Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.1 KB

AddClientAppRequest.md

File metadata and controls

29 lines (21 loc) · 1.1 KB

AddClientAppRequest

Properties

Name Type Description Notes
app_id int The ID of the OpenId Connect app to allow access through. [optional]
scopes List[int] An array of Scope IDs that represent scopes the app can request [optional]

Example

from onelogin.models.add_client_app_request import AddClientAppRequest

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

# convert the object into a dict
add_client_app_request_dict = add_client_app_request_instance.to_dict()
# create an instance of AddClientAppRequest from a dict
add_client_app_request_form_dict = add_client_app_request.from_dict(add_client_app_request_dict)

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