Discount
A discount from stripe as object
Fields
amount_off   
·  Int     · Amount off in cents  annual_discount   
·  String     · Annual discount in cents  duration_in_months   
·  Int     · Duration in months  monthly_discount   
·  String     · Monthly discount in cents  percent_off   
·  Int     · Percent off in cents  Used By
Definition
"""A discount from stripe as object"""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}