Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

File metadata and controls

31 lines (22 loc) · 1.25 KB

Page

Properties

Name Type Description Notes
after str A record id. Results will only contain the records that come after the specified record. Only one of `after` or `before` can be provided, not both. [optional]
before str A record id. Results will only contain the records that come before the specified record. Only one of `after` or `before` can be provided, not both. [optional]
size int The number of records to return. Does not apply to the `listMessages` endpoint. [optional] [default to 25]

Example

from sunshine_conversations_client.model.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]