OBJECT

StripeInvoice

An invoice from stripe as object

link GraphQL Schema definition

  • type StripeInvoice {
  • # The list of add-ons applied to the invoice.
  • add_ons: [StripePlan!]
  • # The amount of the invoice, as a positive or negative integer in the smallest
  • # currency unit (e.g., 100 cents to charge $1.00 or -100 to credit $1.00). The
  • # value is multiplied by the quantity to get the full amount. If the total is
  • # zero, this field will be absent.
  • applied_balance: StripePlan
  • # The base amount of the invoice, not including any discounts, in cents.
  • base_plan: StripePlan
  • # The list of credits applied to the invoice.
  • credits: [StripePlan!]
  • # The discount applied to the invoice.
  • discount: Discount
  • # The unique identifier of the invoice
  • id: String!
  • # The end of the period the invoice covers.
  • period_end: String
  • # The start of the period the invoice covers.
  • period_start: String
  • # The total amount of the invoice, including all discounts and add-ons.
  • total: String
  • }