| Name | Type | Description | Notes |
|---|---|---|---|
| page | int | [optional] | |
| per_page | int | [optional] | |
| total | int | [optional] | |
| data | List[ListWebhooks200ResponseDataInner] | [optional] | |
| request_id | str | [optional] |
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)