GraphQL INPUT_OBJECT

ShippingConfigurationItemInput

Input for creation of shipping configuration item.

link Definition

  • input ShippingConfigurationItemInput {
  • # The ID of the region configuration associated with the shipping configuration
  • # item.
  • regionConfigurationId: Long!
  • # The ID of the shipper service associated with the shipping configuration item.
  • shipperServiceId: ShipperServiceEnum!
  • # Indicates whether the shipping configuration item is active.
  • isActive: Boolean
  • # The purchase price settings for the shipping configuration item.
  • purchasePrice: ShippingConfigurationPriceInput!
  • # The purchase item price settings for the shipping configuration item.
  • purchaseItemPrice: ShippingConfigurationPriceInput!
  • # The unit price settings for the shipping configuration item.
  • unitPrice: ShippingConfigurationPriceInput!
  • }