page metadata
Name | Type | Description | Notes |
---|---|---|---|
next_page_url | str | URL of the next page. | [optional] |
previous_page_url | str | Url of the previous page. | [optional] |
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)