| Name |
Type |
Description |
Notes |
| trusted |
List[str] |
A list of the authorization server IDs |
[optional] |
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]