OpenFga::ListUsersRequest
February 16, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| object | FgaObject | ||
| relation | String | ||
| user_filters | Array<UserTypeFilter> | The type of results returned. Only accepts exactly one value. | |
| authorization_model_id | String | [optional] | |
| contextual_tuples | Array<TupleKey> | [optional] | |
| context | Object | Additional request context that will be used to evaluate any ABAC conditions encountered in the query evaluation. | [optional] |
| consistency | ConsistencyPreference | [optional][default to 'UNSPECIFIED'] |
Example
require 'openfga'
instance = OpenFga::ListUsersRequest.new(
object: null,
relation: reader,
user_filters: [{type=user}, {type=group, relation=member}],
authorization_model_id: 01G5JAVJ41T49E9TT3SKVS7X1J,
contextual_tuples: null,
context: null,
consistency: null
)