You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Condition Object ### Description The Condition object is used to represent a condition. ### Usage Example Used to match request configurations to users in RequestConfiguration
Properties
Name
Type
Description
Notes
group_ids
List[str]
The list of group IDs to match.
[optional]
role_remote_ids
List[str]
The list of role remote IDs to match.
[optional]
Example
fromopal_security.models.conditionimportCondition# TODO update the JSON string belowjson="{}"# create an instance of Condition from a JSON stringcondition_instance=Condition.from_json(json)
# print the JSON string representation of the objectprint(Condition.to_json())
# convert the object into a dictcondition_dict=condition_instance.to_dict()
# create an instance of Condition from a dictcondition_from_dict=Condition.from_dict(condition_dict)