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] |
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. Copy and save it in a safe place. |
[optional] |
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_from_dict = ApiKeyCreateResponse.from_dict(api_key_create_response_dict)
[Back to Model list] [Back to API list] [Back to README]