| Name | Type | Description | Notes |
|---|---|---|---|
| var_self | HrefObjectSelfLink | [optional] | |
| activate | HrefObjectActivateLink | [optional] | |
| deactivate | HrefObjectDeactivateLink | [optional] | |
| methods | HrefObject | Link to Authenticator methods | [optional] |
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)