Skip to content

WriteOffInput

Payload for a writeoff

Fields

id · ID · The ID of the write-off
amount · Float! · required · The WriteOff amount
write_off_type · WriteOffType! · required · The type of write-off
other_reason · String · The other reason for the write-off
_destroy · Boolean · When true, current write-off is deleted

Used By

Definition

"""
Payload for a writeoff
"""
input WriteOffInput {
"""
The ID of the write-off
"""
id: ID
"""
The WriteOff amount
"""
amount: Float!
"""
The type of write-off
"""
write_off_type: WriteOffType!
"""
The other reason for the write-off
"""
other_reason: String
"""
When true, current write-off is deleted
"""
_destroy: Boolean
}