SystemMediaGroupGetListRequest
Bases: OCIRequest
Request to get the list of media groups. The response is either SystemMediaGroupGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMediaGroupGetListRequest. The response includes an array of media groups defined in the system.
Attributes:
name (Optional[List[str]]):
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 SystemMediaGroupGetListRequest
client = Client()
command = SystemMediaGroupGetListRequest()
response = client.command(command)
print(response)