Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.07 KB

ClientAppFull.md

File metadata and controls

31 lines (23 loc) · 1.07 KB

ClientAppFull

Properties

Name Type Description Notes
scopes List[Scope] List of All Scopes assigned to a client app [optional]
app_id int Unique Client App ID [optional]
name str Name of client app [optional]
api_auth_id int [optional]

Example

from onelogin.models.client_app_full import ClientAppFull

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

# convert the object into a dict
client_app_full_dict = client_app_full_instance.to_dict()
# create an instance of ClientAppFull from a dict
client_app_full_form_dict = client_app_full.from_dict(client_app_full_dict)

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