OBJECT

CommissionPackageVersion

Change log of commission packages

link GraphQL Schema definition

  • type CommissionPackageVersion implements Node {
  • # Is the commission package version the current commission package for the seller?
  • active: Boolean!
  • # The "applies to postage" value for the commission package version
  • appliesToPostage: Boolean!
  • # Created at date for the commission package version
  • createdAt: ISO8601DateTime!
  • # The list of custom rates for this commission package
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • customRates(after: String, before: String, first: Int, last: Int): CustomCommissionRateConnection
  • # The default rate for the commission package version
  • defaultRate: Float!
  • id: ID!
  • # The id used to identify the commission package version
  • legacyId: Int
  • # Name of the commission package schedule
  • name: String!
  • }