Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

AuthenticatorLinks

Properties

Name Type Description Notes
var_self HrefObjectSelfLink [optional]
activate HrefObjectActivateLink [optional]
deactivate HrefObjectDeactivateLink [optional]
methods HrefObject Link to Authenticator methods [optional]

Example

from okta.models.authenticator_links import AuthenticatorLinks

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

# convert the object into a dict
authenticator_links_dict = authenticator_links_instance.to_dict()
# create an instance of AuthenticatorLinks from a dict
authenticator_links_from_dict = AuthenticatorLinks.from_dict(authenticator_links_dict)

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