Skip to content

LineWriteOff

A payer-balance write-off on a claim service line

Fields

amount · Float! · required · Amount written off
id · ID! · required · The unique identifier of the write-off
notes · String · Free-text notes captured for a manual entry
reason · LineWriteOffReason! · required · Why the payer balance was written off
source · LinePaymentSource! · required · Where the write-off came from (era or manual)
voided_at · ISO8601DateTime · When the write-off was voided (null = active)

Used By

Definition

"""
A payer-balance write-off on a claim service line
"""
type LineWriteOff {
"""
Amount written off
"""
amount: Float!
"""
The unique identifier of the write-off
"""
id: ID!
"""
Free-text notes captured for a manual entry
"""
notes: String
"""
Why the payer balance was written off
"""
reason: LineWriteOffReason!
"""
Where the write-off came from (era or manual)
"""
source: LinePaymentSource!
"""
When the write-off was voided (null = active)
"""
voided_at: ISO8601DateTime
}