Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.76 KB

File metadata and controls

43 lines (34 loc) · 1.76 KB

FetchApplications200ResponseDataInner

Properties

Name Type Description Notes
id int [optional]
name str [optional]
app_id str [optional]
client_id 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]
created_at datetime [optional]
updated_at datetime [optional]
deleted_at datetime [optional]

Example

from gateway_api_sdk.models.fetch_applications200_response_data_inner import FetchApplications200ResponseDataInner

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

# convert the object into a dict
fetch_applications200_response_data_inner_dict = fetch_applications200_response_data_inner_instance.to_dict()
# create an instance of FetchApplications200ResponseDataInner from a dict
fetch_applications200_response_data_inner_from_dict = FetchApplications200ResponseDataInner.from_dict(fetch_applications200_response_data_inner_dict)

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