ChargeDisputeType
An object containing information on a Stripe charge dispute
Fields
invoice_id
· ID
· The ID of the invoice associated with this 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 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!}