Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 942 Bytes

File metadata and controls

30 lines (22 loc) · 942 Bytes

SortDto

Order the returned products should appear on the page.

Properties

Name Type Description Notes
field str Field the order will be applied to.
order SortDtoOrderDto

Example

from gb_retailapi_client.models.sort_dto import SortDto

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

# convert the object into a dict
sort_dto_dict = sort_dto_instance.to_dict()
# create an instance of SortDto from a dict
sort_dto_form_dict = sort_dto.from_dict(sort_dto_dict)

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