Skip to content

ChargeDisputeType

An object containing information on a Stripe charge dispute

Fields

amount · Int · The amount that was disputed, in cents
billing_item_id · ID! · required · The ID of the billing item being disputed
client · User! · required · The client associated with the billing item
id · ID! · required · The ID for the charge dispute at Healthie
invoice_id · ID · The ID of the invoice associated with this dispute
provider · User! · required · The provider associated with the billing item
reason · String · The reason for the charge dispute
requested_payment_id · ID · The ID of the requested payment associated with the billing item attached to this dispute
status · ChargeDisputeStatus · The status of the charge dispute
stripe_dispute_id · String! · required · The ID for the charge dispute object at Stripe

Used By

Definition

"""
An object containing information on a Stripe charge dispute
"""
type ChargeDisputeType {
"""
The amount that was disputed, in cents
"""
amount: Int
"""
The ID of the billing item being disputed
"""
billing_item_id: ID!
"""
The client associated with the billing item
"""
client: User!
"""
The ID for the charge dispute at Healthie
"""
id: ID!
"""
The ID of the invoice associated with this dispute
"""
invoice_id: ID
"""
The provider associated with the billing item
"""
provider: User!
"""
The reason for the charge dispute
"""
reason: String
"""
The ID of the requested payment associated with the billing item attached to this dispute
"""
requested_payment_id: ID
"""
The status of the charge dispute
"""
status: ChargeDisputeStatus
"""
The ID for the charge dispute object at Stripe
"""
stripe_dispute_id: String!
}