Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.15 KB

Connector.md

File metadata and controls

32 lines (24 loc) · 1.15 KB

Connector

Properties

Name Type Description Notes
id int Connectors unique ID in OneLogin. [optional]
name str Name of Connector [optional]
icon_url str A link to the icon's url. [optional]
auth_method AuthMethod [optional]
allows_new_parameters bool Indicates if apps created using this connector will be allowed to create custom parameters. [optional]

Example

from onelogin.models.connector import Connector

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

# convert the object into a dict
connector_dict = connector_instance.to_dict()
# create an instance of Connector from a dict
connector_form_dict = connector.from_dict(connector_dict)

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