Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

ApiKeyUpdateRequest.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

ApiKeyUpdateRequest

Properties

Name Type Description Notes
active bool Indicates if the webhook key is active [optional]
description str A name or brief explanation of what this api key is used for [optional]

Example

from conekta.models.api_key_update_request import ApiKeyUpdateRequest

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

# convert the object into a dict
api_key_update_request_dict = api_key_update_request_instance.to_dict()
# create an instance of ApiKeyUpdateRequest from a dict
api_key_update_request_from_dict = ApiKeyUpdateRequest.from_dict(api_key_update_request_dict)

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