An array of Group IDs for the simulate operation. Only user IDs or Group IDs are allowed, not both.
| Name | Type | Description | Notes |
|---|---|---|---|
| ids | List[str] |
from okta.models.policy_context_groups import PolicyContextGroups
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyContextGroups from a JSON string
policy_context_groups_instance = PolicyContextGroups.from_json(json)
# print the JSON string representation of the object
print(PolicyContextGroups.to_json())
# convert the object into a dict
policy_context_groups_dict = policy_context_groups_instance.to_dict()
# create an instance of PolicyContextGroups from a dict
policy_context_groups_from_dict = PolicyContextGroups.from_dict(policy_context_groups_dict)