Name | Type | Description | Notes |
---|---|---|---|
pagination | PaginationParams | Pagination parameters for the request. | [optional] |
filters | TenantTicketFilters | Filters to apply to the tickets. | [optional] |
from onelens_backend_client.models.get_tenant_tickets_api_request import GetTenantTicketsAPIRequest
# TODO update the JSON string below
json = "{}"
# create an instance of GetTenantTicketsAPIRequest from a JSON string
get_tenant_tickets_api_request_instance = GetTenantTicketsAPIRequest.from_json(json)
# print the JSON string representation of the object
print(GetTenantTicketsAPIRequest.to_json())
# convert the object into a dict
get_tenant_tickets_api_request_dict = get_tenant_tickets_api_request_instance.to_dict()
# create an instance of GetTenantTicketsAPIRequest from a dict
get_tenant_tickets_api_request_form_dict = get_tenant_tickets_api_request.from_dict(get_tenant_tickets_api_request_dict)