GroupCallCenterEnhancedReportingBrandingGetRequest
Bases: OCIRequest
Request to get the group branding information. The response is either GroupCallCenterEnhancedReportingBrandingGetResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
| @dataclass(kw_only=True)
class GroupCallCenterEnhancedReportingBrandingGetRequest(OCIRequest):
"""Request to get the group branding information.
The response is either GroupCallCenterEnhancedReportingBrandingGetResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
"""
service_provider_id: str = field(metadata={"alias": "serviceProviderId"})
group_id: str = field(metadata={"alias": "groupId"})
|
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterEnhancedReportingBrandingGetRequest.
Attributes:
branding_choice (str):
branding_file_description (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
| @dataclass(kw_only=True)
class GroupCallCenterEnhancedReportingBrandingGetResponse(OCIDataResponse):
"""Response to the GroupCallCenterEnhancedReportingBrandingGetRequest.
Attributes:
branding_choice (str):
branding_file_description (Optional[str]):
"""
branding_choice: str = field(metadata={"alias": "brandingChoice"})
branding_file_description: Optional[str] = field(
default=None, metadata={"alias": "brandingFileDescription"}
)
|
Bases: OCIResponseSource code in src/mercury_ocip_fast/commands/base_command.py
| class ErrorResponse(OCIResponse):
errorCode: Optional[int] = None
summary: str
summaryEnglish: str
detail: Optional[str] = None
|
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupCallCenterEnhancedReportingBrandingGetRequest
client = Client()
command = GroupCallCenterEnhancedReportingBrandingGetRequest(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("GroupCallCenterEnhancedReportingBrandingGetRequest",
service_provider_id=...,
group_id=...,
)
print(response)