Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.22 KB

File metadata and controls

29 lines (20 loc) · 1.22 KB

PaginationRequestWithSortOptionsSortOrder

Denotes the sort order

Properties

Name Type Description Notes

Example

from wallet.models.pagination_request_with_sort_options_sort_order import PaginationRequestWithSortOptionsSortOrder

# TODO update the JSON string below
json = "{}"
# create an instance of PaginationRequestWithSortOptionsSortOrder from a JSON string
pagination_request_with_sort_options_sort_order_instance = PaginationRequestWithSortOptionsSortOrder.from_json(json)
# print the JSON string representation of the object
print PaginationRequestWithSortOptionsSortOrder.to_json()

# convert the object into a dict
pagination_request_with_sort_options_sort_order_dict = pagination_request_with_sort_options_sort_order_instance.to_dict()
# create an instance of PaginationRequestWithSortOptionsSortOrder from a dict
pagination_request_with_sort_options_sort_order_form_dict = pagination_request_with_sort_options_sort_order.from_dict(pagination_request_with_sort_options_sort_order_dict)

[Back to Model list] [Back to API list] [Back to README]