| Name | Type | Description | Notes |
|---|---|---|---|
| status | APIStatus | ||
| pending_webhook_events | List[PendingCommentToSyncOutbound] |
from client.models.get_pending_webhook_events_response import GetPendingWebhookEventsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetPendingWebhookEventsResponse from a JSON string
get_pending_webhook_events_response_instance = GetPendingWebhookEventsResponse.from_json(json)
# print the JSON string representation of the object
print(GetPendingWebhookEventsResponse.to_json())
# convert the object into a dict
get_pending_webhook_events_response_dict = get_pending_webhook_events_response_instance.to_dict()
# create an instance of GetPendingWebhookEventsResponse from a dict
get_pending_webhook_events_response_from_dict = GetPendingWebhookEventsResponse.from_dict(get_pending_webhook_events_response_dict)