Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.79 KB

File metadata and controls

36 lines (28 loc) · 1.79 KB

ApiKeyCreateResponse

Properties

Name Type Description Notes
authentication_token str It is occupied as a user when authenticated with basic authentication, with a blank password. This value will only appear once, in the request to create a new key [optional]
active bool Indicates if the api key is active [optional]
created_at int Unix timestamp in seconds with the creation date of the api key [optional]
description str Detail of the use that will be given to the api key [optional]
id str Unique identifier of the api key [optional]
livemode bool Indicates if the api key is in live mode [optional]
object str Object name, value is api_key [optional]
prefix str The first few characters of the authentication_token [optional]
role str Indicates the user account private=owner or public=public [optional]

Example

from conekta.models.api_key_create_response import ApiKeyCreateResponse

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

# convert the object into a dict
api_key_create_response_dict = api_key_create_response_instance.to_dict()
# create an instance of ApiKeyCreateResponse from a dict
api_key_create_response_form_dict = api_key_create_response.from_dict(api_key_create_response_dict)

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