Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

AssociatedServerMediated

Properties

Name Type Description Notes
trusted List[str] A list of the authorization server IDs [optional]

Example

from okta.models.associated_server_mediated import AssociatedServerMediated

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

# convert the object into a dict
associated_server_mediated_dict = associated_server_mediated_instance.to_dict()
# create an instance of AssociatedServerMediated from a dict
associated_server_mediated_from_dict = AssociatedServerMediated.from_dict(associated_server_mediated_dict)

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