Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1012 Bytes

File metadata and controls

30 lines (21 loc) · 1012 Bytes

UserAttributeSelector

Properties

Name Type Description Notes
attribute str
values List[str]

Example

from opal_security.models.user_attribute_selector import UserAttributeSelector

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

# convert the object into a dict
user_attribute_selector_dict = user_attribute_selector_instance.to_dict()
# create an instance of UserAttributeSelector from a dict
user_attribute_selector_from_dict = UserAttributeSelector.from_dict(user_attribute_selector_dict)

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