Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB

WebhookApiKeyCredential

An API key credential for webhook authentication.

Properties

Name Type Description Notes
id UUID The unique identifier for the credential.
name str The name of the API key.
value str The value of the API key.
location WebhookApiKeyLocationEnum

Example

from opal_security.models.webhook_api_key_credential import WebhookApiKeyCredential

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

# convert the object into a dict
webhook_api_key_credential_dict = webhook_api_key_credential_instance.to_dict()
# create an instance of WebhookApiKeyCredential from a dict
webhook_api_key_credential_from_dict = WebhookApiKeyCredential.from_dict(webhook_api_key_credential_dict)

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