Name | Type | Description | Notes |
---|---|---|---|
pagination | PaginationParams | Pagination parameters for the request. | [optional] |
filters | List[OnelensDomainUtilitiesRepositoriesDynamicFiltersFilterCriteria] | Filters to be applied | |
sort_criteria | SortCriteria | [optional] | |
tenant_id | str | The unique identifier of the tenant |
from onelens_backend_client.models.get_policy_tickets_by_entity_id_request import GetPolicyTicketsByEntityIdRequest
# TODO update the JSON string below
json = "{}"
# create an instance of GetPolicyTicketsByEntityIdRequest from a JSON string
get_policy_tickets_by_entity_id_request_instance = GetPolicyTicketsByEntityIdRequest.from_json(json)
# print the JSON string representation of the object
print(GetPolicyTicketsByEntityIdRequest.to_json())
# convert the object into a dict
get_policy_tickets_by_entity_id_request_dict = get_policy_tickets_by_entity_id_request_instance.to_dict()
# create an instance of GetPolicyTicketsByEntityIdRequest from a dict
get_policy_tickets_by_entity_id_request_form_dict = get_policy_tickets_by_entity_id_request.from_dict(get_policy_tickets_by_entity_id_request_dict)