Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 978 Bytes

File metadata and controls

30 lines (21 loc) · 978 Bytes

UserTypeCondition

Properties

Name Type Description Notes
exclude List[str] [optional]
include List[str] [optional]

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]