| Name |
Type |
Description |
Notes |
| name |
str |
Name for management key. |
|
| expiry_date |
datetime |
The date the management key expires. |
|
| endpoints |
List[Endpoint] |
The list of endpoints that can be accessed with the key |
|
| allowed_application_ids |
List[int] |
A list of Application IDs that you can access with the management key. An empty or missing list means the management key can be used for all Applications in the account. |
[optional] |
| id |
int |
ID of the management key. |
|
| created_by |
int |
ID of the user who created it. |
|
| account_id |
int |
ID of account the key is used for. |
|
| created |
datetime |
The date the management key was created. |
|
| disabled |
bool |
The management key is disabled (this property is set to `true`) when the user who created the key is disabled or deleted. |
[optional] |
| last_used |
datetime |
The last time the management key was used. |
[optional] |
from talon_one.models.management_key import ManagementKey
# TODO update the JSON string below
json = "{}"
# create an instance of ManagementKey from a JSON string
management_key_instance = ManagementKey.from_json(json)
# print the JSON string representation of the object
print(ManagementKey.to_json())
# convert the object into a dict
management_key_dict = management_key_instance.to_dict()
# create an instance of ManagementKey from a dict
management_key_from_dict = ManagementKey.from_dict(management_key_dict)
[Back to Model list] [Back to API list] [Back to README]