OpenFga::WriteRequestDeletes

February 16, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
tuple_keysArray<TupleKeyWithoutCondition>
on_missingStringOn '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
)