Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.3 KB

File metadata and controls

38 lines (29 loc) · 1.3 KB

TrustedOrigin

Properties

Name Type Description Notes
created datetime [optional] [readonly]
created_by str [optional]
id str [optional] [readonly]
last_updated datetime [optional] [readonly]
last_updated_by str [optional]
name str [optional]
origin str [optional]
scopes List[TrustedOriginScope] [optional]
status str [optional]
links LinksSelf [optional]

Example

from okta.models.trusted_origin import TrustedOrigin

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

# convert the object into a dict
trusted_origin_dict = trusted_origin_instance.to_dict()
# create an instance of TrustedOrigin from a dict
trusted_origin_from_dict = TrustedOrigin.from_dict(trusted_origin_dict)

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