Source code for bitmovin_api_sdk.encoding.outputs.akamai_msl.akamai_msl_output_list_query_params

[docs]class AkamaiMslOutputListQueryParams(object): def __init__(self, offset=None, limit=None, name=None): # type: (int, int, string_types) -> None super(AkamaiMslOutputListQueryParams, self).__init__() self.offset = offset self.limit = limit self.name = name @property def openapi_types(self): types = { 'offset': 'int', 'limit': 'int', 'name': 'string_types' } return types @property def attribute_map(self): attributes = { 'offset': 'offset', 'limit': 'limit', 'name': 'name' } return attributes