Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.03 KB

AddClientApp201Response.md

File metadata and controls

29 lines (21 loc) · 1.03 KB

AddClientApp201Response

Properties

Name Type Description Notes
app_id int [optional]
api_auth_id int [optional]

Example

from onelogin.models.add_client_app201_response import AddClientApp201Response

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

# convert the object into a dict
add_client_app201_response_dict = add_client_app201_response_instance.to_dict()
# create an instance of AddClientApp201Response from a dict
add_client_app201_response_form_dict = add_client_app201_response.from_dict(add_client_app201_response_dict)

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