OBJECT

CustomCommissionRate

Custom commission rate belonging to a taxon (or category) within a commission package

link GraphQL Schema definition

  • type CustomCommissionRate implements Node {
  • # The Commission Package that the custom commission rate belongs to - e.g. Bronze
  • # Package
  • commissionPackage: CommissionPackage!
  • id: ID!
  • # The commission rate % once the thresholdPrice has been reached
  • overThresholdRate: Decimal
  • # The commission rate for the specified Taxon (or Category)
  • rate: Decimal!
  • # The Taxon (or Category) that the custom commission rate belongs to - eg. Bikes,
  • # Shoes, Wigs
  • taxon: Taxon!
  • # The price limit (e.g. "500.00") set before over_threshold_rate takes into effect
  • thresholdPrice: Decimal
  • # updated at date for the custom commission rate
  • updatedAt: ISO8601DateTime!
  • }