Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.24 KB

File metadata and controls

36 lines (27 loc) · 1.24 KB

UpdateApplicationsRequest

Properties

Name Type Description Notes
name str
image_link str
description str
team_id int
user_id int
enabled bool
permissions List[object]
notifications List[object] [optional]

Example

from gateway_api_sdk.models.update_applications_request import UpdateApplicationsRequest

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

# convert the object into a dict
update_applications_request_dict = update_applications_request_instance.to_dict()
# create an instance of UpdateApplicationsRequest from a dict
update_applications_request_from_dict = UpdateApplicationsRequest.from_dict(update_applications_request_dict)

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