Source code for bitmovin_api_sdk.encoding.encodings.streams.stream_list_query_params

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