UserFeatureAccessCodeGetListRequest21
Bases: OCIRequest
Get the list of feature access codes for a user. The response is either a UserFeatureAccessCodeGetListResponse20 or an ErrorResponse.
In release 20 the "Call Recording" FAC name is changed to
"Call Recording Start".
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserFeatureAccessCodeGetListRequest21.
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 UserFeatureAccessCodeGetListRequest21
client = Client()
command = UserFeatureAccessCodeGetListRequest21(
user_id=...,
)
response = client.command(command)
print(response)