Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

TrustedOriginScope

Properties

Name Type Description Notes
allowed_okta_apps List[IframeEmbedScopeAllowedApps] [optional]
type TrustedOriginScopeType [optional]

Example

from okta.models.trusted_origin_scope import TrustedOriginScope

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

# convert the object into a dict
trusted_origin_scope_dict = trusted_origin_scope_instance.to_dict()
# create an instance of TrustedOriginScope from a dict
trusted_origin_scope_from_dict = TrustedOriginScope.from_dict(trusted_origin_scope_dict)

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