Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.21 KB

WebhookheaderResponse.md

File metadata and controls

33 lines (24 loc) · 1.21 KB

WebhookheaderResponse

A webhookheader object

Properties

Name Type Description Notes
pki_webhookheader_id int The unique ID of the Webhookheader
fki_webhook_id int The unique ID of the Webhook
s_webhookheader_name str The Name of the Webhookheader
s_webhookheader_value str The Value of the Webhookheader

Example

from eZmaxApi.models.webhookheader_response import WebhookheaderResponse

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

# convert the object into a dict
webhookheader_response_dict = webhookheader_response_instance.to_dict()
# create an instance of WebhookheaderResponse from a dict
webhookheader_response_form_dict = webhookheader_response.from_dict(webhookheader_response_dict)

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