Bases: OCIType
A list of phone numbers/sipuris or user ids that replaces a previously configured list. By convention, an element of this type may be set nill to clear the list.
Attributes:
phone_number (Optional[str]):
user_id (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class FindMeFollowMeAlertingGroupReplacementOutgoingDNSIPURIorUserIdList(OCIType):
"""A list of phone numbers/sipuris or user ids that replaces a previously configured list.
By convention, an element of this type may be set nill to clear the list.
Attributes:
phone_number (Optional[str]):
user_id (Optional[str]):
"""
phone_number: Optional[str] = field(default=None, metadata={"alias": "phoneNumber"})
user_id: Optional[str] = field(default=None, metadata={"alias": "userId"})
|