OBJECT

ShippingRate

A shipping rate defined in the marketplace

link GraphQL Schema definition

  • type ShippingRate implements Node {
  • id: ID!
  • # The name used to identify the shipping rate
  • name: String!
  • # Denominated in cents.
  • rateCents: Int!
  • # In string with currency symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • rateFormatted(currency: String): String!
  • # The seller who created the shipping rate. If null then it was created by the
  • # marketplace owner
  • seller: Seller
  • }