Bases: OCIType
A list of Number Portability Query Statuses that replaces a previously configured list. By convention, an element of this type may be set to nill to clear the list.
Attributes:
Source code in src/mercury_ocip_fast/commands/commands.py
| @dataclass(kw_only=True)
class ReplacementNumberPortabilityStatusList(OCIType):
"""A list of Number Portability Query Statuses that replaces a previously
configured list. By convention, an element of this type may be set
to nill to clear the list.
Attributes:
status (List[str]):
"""
status: List[str] = field(metadata={"alias": "status"})
|