Skip to content

updateWriteOffInput

Autogenerated input type of updateWriteOff

Fields

deprecated DO NOT USE
id · ID! · required · The ID of the write-off to update
requested_payment_id · ID · The ID of the requested payment associated with this write-off
write_off_type · WriteOffType · The type of write-off
amount · Float · The amount of the write-off
other_reason · String · Required if write_off_type is "other"

Used By

Definition

"""
Autogenerated input type of updateWriteOff
"""
input updateWriteOffInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
The ID of the write-off to update
"""
id: ID!
"""
The ID of the requested payment associated with this write-off
"""
requested_payment_id: ID
"""
The type of write-off
"""
write_off_type: WriteOffType
"""
The amount of the write-off
"""
amount: Float
"""
Required if write_off_type is "other"
"""
other_reason: String
}