Bases: OCIType
A list of userIds and/or Virtual On-Net user DNs that replaces a previously configured list. By convention, an element of this type may be set nill to clear the list.
Attributes:
entry (List[CustomContactDirectoryEntry]):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class ReplacementCustomContactDirectoryEntryList(OCIType):
"""A list of userIds and/or Virtual On-Net user DNs that replaces a previously configured list.
By convention, an element of this type may be set nill to clear the list.
Attributes:
entry (List[CustomContactDirectoryEntry]):
"""
entry: List[CustomContactDirectoryEntry] = field(metadata={"alias": "entry"})
|