Bases: SearchCriteria
Criteria for searching for services that are active or not. This search criteria data type is only intended to be used by the commands introduced by BW-2301. The commands are EnterpriseUserCallWaitingSettingsGetListRequest and GroupUserCallWaitingSettingsGetListRequest.
Attributes:
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class SearchCriteriaServiceStatus(SearchCriteria):
"""Criteria for searching for services that are active or not.
This search criteria data type is only intended to be used by the commands
introduced by BW-2301.
The commands are EnterpriseUserCallWaitingSettingsGetListRequest
and GroupUserCallWaitingSettingsGetListRequest.
Attributes:
is_active (bool):
"""
is_active: bool = field(metadata={"alias": "isActive"})
|