Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1012 Bytes

File metadata and controls

31 lines (22 loc) · 1012 Bytes

UserCondition

Specifies a set of users to be included or excluded

Properties

Name Type Description Notes
exclude List[str] Users to be excluded [optional]
include List[str] Users to be included [optional]

Example

from okta.models.user_condition import UserCondition

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

# convert the object into a dict
user_condition_dict = user_condition_instance.to_dict()
# create an instance of UserCondition from a dict
user_condition_from_dict = UserCondition.from_dict(user_condition_dict)

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