Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.78 KB

ApiKeyResponse.md

File metadata and controls

40 lines (31 loc) · 1.78 KB

ApiKeyResponse

api keys model

Properties

Name Type Description Notes
active bool Indicates if the api key is active [optional]
created_at int Unix timestamp in seconds of when the api key was created [optional]
updated_at int Unix timestamp in seconds of when the api key was last updated [optional]
deactivated_at int Unix timestamp in seconds of when the api key was deleted [optional]
description str A name or brief explanation of what this api key is used for [optional]
id str Unique identifier of the api key [optional]
livemode bool Indicates if the api key is in production [optional]
deleted bool Indicates if the api key was deleted [optional]
object str Object name, value is 'api_key' [optional]
prefix str The first few characters of the authentication_token [optional]
role str Indicates if the api key is private or public [optional]

Example

from conekta.models.api_key_response import ApiKeyResponse

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

# convert the object into a dict
api_key_response_dict = api_key_response_instance.to_dict()
# create an instance of ApiKeyResponse from a dict
api_key_response_from_dict = ApiKeyResponse.from_dict(api_key_response_dict)

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