SystemFeatureAccessCodeGetListRequest21
Bases: OCIRequest
Request to get list of default Feature Access Codes defined on system level. The response is either SystemFeatureAccessCodeGetListResponse20 or ErrorResponse.
In release 20 the "Call Recording" FAC name is changed to
"Call Recording - Start".
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemFeatureAccessCodeGetListRequest21.
In release 20 the "Call Recording" FAC name is changed to
"Call Recording - Start".
Attributes:
feature_access_code (Optional[List[FeatureAccessCodeReadEntry]]):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemFeatureAccessCodeGetListRequest21
client = Client()
command = SystemFeatureAccessCodeGetListRequest21()
response = client.command(command)
print(response)