| Name |
Type |
Description |
Notes |
| total |
int |
Defines Total number of records. |
[optional] |
| pages |
int |
Defines Total number of pages. |
[optional] |
| page |
int |
Defines Current page number. |
[optional] |
from shipping.models.all_defaults_page_info import AllDefaultsPageInfo
# TODO update the JSON string below
json = "{}"
# create an instance of AllDefaultsPageInfo from a JSON string
all_defaults_page_info_instance = AllDefaultsPageInfo.from_json(json)
# print the JSON string representation of the object
print(AllDefaultsPageInfo.to_json())
# convert the object into a dict
all_defaults_page_info_dict = all_defaults_page_info_instance.to_dict()
# create an instance of AllDefaultsPageInfo from a dict
all_defaults_page_info_from_dict = AllDefaultsPageInfo.from_dict(all_defaults_page_info_dict)
[Back to Model list] [Back to API list] [Back to README]