Source code for bitmovin_api_sdk.notifications.notification_list_query_params
[docs]class NotificationListQueryParams(object):
def __init__(self, offset=None, limit=None):
# type: (int, int) -> None
super(NotificationListQueryParams, 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