Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.52 KB

File metadata and controls

33 lines (24 loc) · 1.52 KB

PolicyMappingLinksAllOfAuthenticator

Properties

Name Type Description Notes
hints HrefObjectHints [optional]
href str Link URI
name str Link name [optional]
type str The media type of the link. If omitted, it is implicitly `application/json`. [optional]
templated bool Indicates whether the Link Object's "href" property is a URI Template. [optional]

Example

from okta.models.policy_mapping_links_all_of_authenticator import PolicyMappingLinksAllOfAuthenticator

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

# convert the object into a dict
policy_mapping_links_all_of_authenticator_dict = policy_mapping_links_all_of_authenticator_instance.to_dict()
# create an instance of PolicyMappingLinksAllOfAuthenticator from a dict
policy_mapping_links_all_of_authenticator_from_dict = PolicyMappingLinksAllOfAuthenticator.from_dict(policy_mapping_links_all_of_authenticator_dict)

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