Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

PolicyContextUser

The user ID for the simulate operation. Only user IDs or Group IDs are allowed, not both.

Properties

Name Type Description Notes
id str The unique ID number for the user.

Example

from okta.models.policy_context_user import PolicyContextUser

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

# convert the object into a dict
policy_context_user_dict = policy_context_user_instance.to_dict()
# create an instance of PolicyContextUser from a dict
policy_context_user_from_dict = PolicyContextUser.from_dict(policy_context_user_dict)

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