GraphQL OBJECT
ShippingConfiguration
Shipping configuration you specify for a given product.
link Definition
- type ShippingConfiguration {
 - #   Unique ID of the shipping configuration.
 - : Int! 
 - #   Name of the shipping configuration.
 - : String 
 - #   List of items in the shipping configuration.
 - : [ShippingConfigurationItem] 
 - #   Information about client the shipping configuration belongs to.
 - : Client 
 - #   Date and time when the shipping configuration created.
 - : DateTime 
 - #   User who created the shipping configuration.
 - : UserAccount 
 - #   Date and time when the last edit occurred.
 - : DateTime 
 - #   User that last modified the shipping configuration.
 - : UserAccount 
 - #   List of products that refer to this shipping configuration.
 - : [Product] 
 - #   List of clients that refer to this shipping configuration.
 - : [Client] 
 - }
 
    link Required by
- ClientAccount information for a specific client account.
 - CreateShippingConfigurationPayloadPayload for created shipping configuration.
 - ProductItem or service offered for sale.
 - querynull
 - RegionConfigurationRegion you specify for shipping configurations, price configurations, marketing campaigns, and reporting of your products.
 - UpdateShippingConfigurationPayloadPayload for created shipping configuration.