Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 941 Bytes

PageWebhook.md

File metadata and controls

31 lines (22 loc) · 941 Bytes

PageWebhook

Properties

Name Type Description Notes
pageable Pageable
results List[Webhook]
total int

Example

from openapi_client.models.page_webhook import PageWebhook

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

# convert the object into a dict
page_webhook_dict = page_webhook_instance.to_dict()
# create an instance of PageWebhook from a dict
page_webhook_from_dict = PageWebhook.from_dict(page_webhook_dict)

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