Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.87 KB

File metadata and controls

45 lines (36 loc) · 1.87 KB

CreateApplications200ResponseDataInner

Properties

Name Type Description Notes
id int [optional]
name str [optional]
app_id str [optional]
client_id str [optional]
client_secret str [optional]
image_link str [optional]
description str [optional]
team_id int [optional]
user_id int [optional]
enabled bool [optional]
permissions List[object] [optional]
team List[object] [optional]
user List[object] [optional]
notifications List[object] [optional]
created_at datetime [optional]
updated_at datetime [optional]
deleted_at datetime [optional]

Example

from gateway_api_sdk.models.create_applications200_response_data_inner import CreateApplications200ResponseDataInner

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

# convert the object into a dict
create_applications200_response_data_inner_dict = create_applications200_response_data_inner_instance.to_dict()
# create an instance of CreateApplications200ResponseDataInner from a dict
create_applications200_response_data_inner_from_dict = CreateApplications200ResponseDataInner.from_dict(create_applications200_response_data_inner_dict)

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