Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.56 KB

File metadata and controls

34 lines (25 loc) · 1.56 KB

LinksSelfAndFullUsersLifecycle

Properties

Name Type Description Notes
var_self HrefObjectSelfLink [optional]
activate HrefObjectActivateLink [optional]
deactivate HrefObjectDeactivateLink [optional]
suspend HrefObjectSuspendLink [optional]
unsuspend HrefObjectUnsuspendLink [optional]
users HrefObject Link to device users [optional]

Example

from okta.models.links_self_and_full_users_lifecycle import LinksSelfAndFullUsersLifecycle

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

# convert the object into a dict
links_self_and_full_users_lifecycle_dict = links_self_and_full_users_lifecycle_instance.to_dict()
# create an instance of LinksSelfAndFullUsersLifecycle from a dict
links_self_and_full_users_lifecycle_from_dict = LinksSelfAndFullUsersLifecycle.from_dict(links_self_and_full_users_lifecycle_dict)

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