Name |
Type |
Description |
Notes |
description |
str |
|
[optional] |
workspace_id |
int |
|
[optional] |
user_id |
int |
|
[optional] |
last_usage |
datetime |
|
[optional] |
id |
int |
ID of client app or api tokens |
|
app_name |
str |
Name of client app or api tokens |
|
app_key |
str |
App key of client app or api tokens |
|
from openapi_client.models.client_app_schema import ClientAppSchema
# TODO update the JSON string below
json = "{}"
# create an instance of ClientAppSchema from a JSON string
client_app_schema_instance = ClientAppSchema.from_json(json)
# print the JSON string representation of the object
print(ClientAppSchema.to_json())
# convert the object into a dict
client_app_schema_dict = client_app_schema_instance.to_dict()
# create an instance of ClientAppSchema from a dict
client_app_schema_from_dict = ClientAppSchema.from_dict(client_app_schema_dict)
[Back to Model list] [Back to API list] [Back to README]