GroupExtensionLengthGetRequest22
Bases: OCIRequest
Request the group's extension length. The response is either a GroupExtensionLengthGetResponse22 or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupExtensionLengthGetRequest22.
The following elements are only used in AS data mode and not returned in XS data mode:
useExterpriseExtensionLengthSetting
Attributes:
min_extension_length (int):
max_extension_length (int):
default_extension_length (int):
use_enterprise_extension_length_setting (Optional[bool]):
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 GroupExtensionLengthGetRequest22
client = Client()
command = GroupExtensionLengthGetRequest22(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)