Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.04 KB

UpdateClientAppRequest.md

File metadata and controls

28 lines (20 loc) · 1.04 KB

UpdateClientAppRequest

Properties

Name Type Description Notes
scopes List[int] An array of Scope IDs the scopes the app can request [optional]

Example

from onelogin.models.update_client_app_request import UpdateClientAppRequest

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

# convert the object into a dict
update_client_app_request_dict = update_client_app_request_instance.to_dict()
# create an instance of UpdateClientAppRequest from a dict
update_client_app_request_form_dict = update_client_app_request.from_dict(update_client_app_request_dict)

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