Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 2.63 KB

File metadata and controls

40 lines (34 loc) · 2.63 KB

EtsyApi::ShopShippingProfileUpgrade

Properties

Name Type Description Notes
shipping_profile_id Integer The numeric ID of the base shipping profile. [optional]
upgrade_id Integer The numeric ID that is associated with a shipping upgrade [optional]
upgrade_name String Name for the shipping upgrade shown to shoppers at checkout, e.g. USPS Priority. [optional]
type String The type of the shipping upgrade. Domestic (0) or international (1). [optional]
rank Integer The positive non-zero numeric position in the images displayed in a listing, with rank 1 images appearing in the left-most position in a listing. [optional]
language String The IETF language tag for the language of the shipping profile. Ex: `de`, `en`, `es`, `fr`, `it`, `ja`, `nl`, `pl`, `pt` [optional]
price ShopShippingProfileUpgradePrice [optional]
secondary_price ShopShippingProfileUpgradeSecondaryPrice [optional]
shipping_carrier_id Integer The unique ID of a supported shipping carrier, which is used to calculate an Estimated Delivery Date. Required with `mail_class` if `min_delivery_days` and `max_delivery_days` are null. [optional]
mail_class String The unique ID string of a shipping carrier's mail class, which is used to calculate an estimated delivery date. Required with `shipping_carrier_id` if `min_delivery_days` and `max_delivery_days` are null. [optional]
min_delivery_days Integer The minimum number of business days a buyer can expect to wait to receive their purchased item once it has shipped. Required with `max_delivery_days` if `mail_class` is null. [optional]
max_delivery_days Integer The maximum number of business days a buyer can expect to wait to receive their purchased item once it has shipped. Required with `min_delivery_days` if `mail_class` is null. [optional]

Example

require 'etsy_api'

instance = EtsyApi::ShopShippingProfileUpgrade.new(
  shipping_profile_id: null,
  upgrade_id: null,
  upgrade_name: null,
  type: null,
  rank: null,
  language: null,
  price: null,
  secondary_price: null,
  shipping_carrier_id: null,
  mail_class: null,
  min_delivery_days: null,
  max_delivery_days: null
)