Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.36 KB

PageMerchantView.md

File metadata and controls

35 lines (26 loc) · 1.36 KB

PageMerchantView

A page object with links to move to other pages and the list of objects.

Properties

Name Type Description Notes
first str The link to the first page.
items List[MerchantView] An array of objects.
last str The link to the last page.
next str The link to the next page or `null` if there's no page.
prev str The link to the previous page or `null` if there's no page.
var_self str The link to the current page.

Example

from wordlift_client.models.page_merchant_view import PageMerchantView

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

# convert the object into a dict
page_merchant_view_dict = page_merchant_view_instance.to_dict()
# create an instance of PageMerchantView from a dict
page_merchant_view_from_dict = PageMerchantView.from_dict(page_merchant_view_dict)

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