Specifies a set of users to be included or excluded
| Name | Type | Description | Notes |
|---|---|---|---|
| exclude | List[str] | Users to be excluded | [optional] |
| include | List[str] | Users to be included | [optional] |
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)