Skip to content

WriteOff

An invoice (requested payment) write-off

Fields

amount · Float! · required · The amount of the write-off
id · ID! · required · The unique identifier of the write-off
other_reason · String · Non-standard reason for the write-off
requested_payment · RequestedPayment! · required · The requested payment associated with this write-off
write_off_type · WriteOffType! · required · The type of write-off

Used By

Definition

"""
An invoice (requested payment) write-off
"""
type WriteOff {
"""
The amount of the write-off
"""
amount: Float!
"""
The unique identifier of the write-off
"""
id: ID!
"""
Non-standard reason for the write-off
"""
other_reason: String
"""
The requested payment associated with this write-off
"""
requested_payment: RequestedPayment!
"""
The type of write-off
"""
write_off_type: WriteOffType!
}