Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 864 Bytes

Page.md

File metadata and controls

31 lines (22 loc) · 864 Bytes

Page

page metadata

Properties

Name Type Description Notes
next_page_url str URL of the next page. [optional]
previous_page_url str Url of the previous page. [optional]

Example

from conekta.models.page import Page

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

# convert the object into a dict
page_dict = page_instance.to_dict()
# create an instance of Page from a dict
page_from_dict = Page.from_dict(page_dict)

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