Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

UserTypeCondition

<x-lifecycle class="oie"> Specifies which user types to include and/or exclude

Properties

Name Type Description Notes
exclude List[str] The user types to exclude
include List[str] The user types to include

Example

from okta.models.user_type_condition import UserTypeCondition

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

# convert the object into a dict
user_type_condition_dict = user_type_condition_instance.to_dict()
# create an instance of UserTypeCondition from a dict
user_type_condition_from_dict = UserTypeCondition.from_dict(user_type_condition_dict)

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