Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 941 Bytes

WebhookPage.md

File metadata and controls

31 lines (22 loc) · 941 Bytes

WebhookPage

Properties

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

Example

from openapi_client.models.webhook_page import WebhookPage

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

# convert the object into a dict
webhook_page_dict = webhook_page_instance.to_dict()
# create an instance of WebhookPage from a dict
webhook_page_from_dict = WebhookPage.from_dict(webhook_page_dict)

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