Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

File metadata and controls

30 lines (21 loc) · 1.09 KB

WebhookMtls

mTLS configuration for the webhook. On responses, present only when a signed client certificate is set. On requests, provide a signed client certificate to enable mTLS, or null to remove it.

Properties

Name Type Description Notes
client_signed_cert str Signed client certificate PEM used for mTLS when delivering notifications.

Example

from fireblocks.models.webhook_mtls import WebhookMtls

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

# convert the object into a dict
webhook_mtls_dict = webhook_mtls_instance.to_dict()
# create an instance of WebhookMtls from a dict
webhook_mtls_from_dict = WebhookMtls.from_dict(webhook_mtls_dict)

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