Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.1 KB

File metadata and controls

32 lines (24 loc) · 1.1 KB

AuthServer

base resource for configuring api authorization in OneLogin

Properties

Name Type Description Notes
id int Auth server unique ID in Onelogin [optional] [readonly]
name str Name of the API.
description str Description of what the API does.
configuration AuthServerConfiguration

Example

from onelogin.models.auth_server import AuthServer

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

# convert the object into a dict
auth_server_dict = auth_server_instance.to_dict()
# create an instance of AuthServer from a dict
auth_server_form_dict = auth_server.from_dict(auth_server_dict)

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