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

Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

File metadata and controls

32 lines (23 loc) · 1.16 KB

WebhookCreateInput

The input for creating a webhook.

Properties

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

Example

from openapi_client.models.webhook_create_input import WebhookCreateInput

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

# convert the object into a dict
webhook_create_input_dict = webhook_create_input_instance.to_dict()
# create an instance of WebhookCreateInput from a dict
webhook_create_input_from_dict = WebhookCreateInput.from_dict(webhook_create_input_dict)

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

0