Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.21 KB

File metadata and controls

33 lines (24 loc) · 1.21 KB

ListWebhooks200Response

Properties

Name Type Description Notes
page int [optional]
per_page int [optional]
total int [optional]
data List[ListWebhooks200ResponseDataInner] [optional]
request_id str [optional]

Example

from llmpulse.models.list_webhooks200_response import ListWebhooks200Response

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

# convert the object into a dict
list_webhooks200_response_dict = list_webhooks200_response_instance.to_dict()
# create an instance of ListWebhooks200Response from a dict
list_webhooks200_response_from_dict = ListWebhooks200Response.from_dict(list_webhooks200_response_dict)

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