OpenFga::WriteRequestDeletes
February 16, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| tuple_keys | Array<TupleKeyWithoutCondition> | ||
| on_missing | String | On 'error', the API returns an error when deleting a tuple that does not exist. On 'ignore', deletes of non-existent tuples are treated as no-ops. | [optional][default to 'error'] |
Example
require 'openfga'
instance = OpenFga::WriteRequestDeletes.new(
tuple_keys: null,
on_missing: ignore
)