Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 967 Bytes

ApiKeyRequest.md

File metadata and controls

30 lines (21 loc) · 967 Bytes

ApiKeyRequest

Properties

Name Type Description Notes
description str A name or brief explanation of what this api key is used for [optional]
role str

Example

from conekta.models.api_key_request import ApiKeyRequest

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

# convert the object into a dict
api_key_request_dict = api_key_request_instance.to_dict()
# create an instance of ApiKeyRequest from a dict
api_key_request_from_dict = ApiKeyRequest.from_dict(api_key_request_dict)

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