Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.07 KB

File metadata and controls

29 lines (21 loc) · 1.07 KB

ApiKeyUpdateRequest

Properties

Name Type Description Notes
active bool Indicates if the webhook key is active [optional]
description str Detail of the use that will be given to the api key [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_form_dict = api_key_update_request.from_dict(api_key_update_request_dict)

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