8000 rvvup-python-openapi/docs/WebhookUpdateInput.md at main · rvvup/rvvup-python-openapi · GitHub
[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.26 KB

File metadata and controls

33 lines (24 loc) · 1.26 KB

WebhookUpdateInput

The input for updating a webhook.

Properties

Name Type Description Notes
headers Dict[str, Optional[str]] Custom headers for the webhook [optional]
status WebhookStatus [optional]
subscribed_events List[WebhookEventType] The events to subscribe to. [optional]
url str The URL to send the webhook event to. [optional]

Example

from openapi_client.models.webhook_update_input import WebhookUpdateInput

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

# convert the object into a dict
webhook_update_input_dict = webhook_update_input_instance.to_dict()
# create an instance of WebhookUpdateInput from a dict
webhook_update_input_from_dict = WebhookUpdateInput.from_dict(webhook_update_input_dict)

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

0