OBJECT

Discount

A discount from stripe as object

link GraphQL Schema definition

  • type Discount {
  • # Amount off in cents
  • amount_off: Int
  • # Annual discount in cents
  • annual_discount: String
  • # Duration of the discount
  • duration: String
  • # Duration in months
  • duration_in_months: Int
  • # The unique identifier of the discount
  • id: String!
  • # Monthly discount in cents
  • monthly_discount: String
  • # The name of the discount
  • name: String
  • # Percent off in cents
  • percent_off: Int
  • }