| Name | Type | Description | Notes |
|---|---|---|---|
| shipping_profile_id | Integer | The numeric ID of the shipping profile. | [optional] |
| title | String | The name string of this shipping profile. | [optional] |
| user_id | Integer | The numeric ID for the user who owns the shipping profile. | [optional] |
| min_processing_days | Integer | The minimum number of days for processing the listing. | [optional] |
| max_processing_days | Integer | The maximum number of days for processing the listing. | [optional] |
| processing_days_display_label | String | Translated display label string for processing days. | [optional] |
| origin_country_iso | String | The ISO code of the country from which the listing ships. | [optional] |
| is_deleted | Boolean | When true, someone deleted this shipping profile. | [optional] |
| shipping_profile_destinations | Array<ShopShippingProfileShippingProfileDestinationsInner> | A list of shipping profile destinations available for this shipping profile. | [optional] |
| shipping_profile_upgrades | Array<ShopShippingProfileShippingProfileUpgradesInner> | A list of shipping profile upgrades available for this shipping profile. | [optional] |
| origin_postal_code | String | The postal code string (not necessarily a number) for the location from which the listing ships. Required if the `origin_country_iso` is `US` or `CA`. | [optional] |
| profile_type | String | [optional] | |
| domestic_handling_fee | Float | The domestic handling fee added to buyer's shipping total - only available for calculated shipping profiles. | [optional][default to 0] |
| international_handling_fee | Float | The international handling fee added to buyer's shipping total - only available for calculated shipping profiles. | [optional][default to 0] |
require 'etsy_api'
instance = EtsyApi::ShopShippingProfile.new(
shipping_profile_id: null,
title: null,
user_id: null,
min_processing_days: null,
max_processing_days: null,
processing_days_display_label: null,
origin_country_iso: null,
is_deleted: null,
shipping_profile_destinations: null,
shipping_profile_upgrades: null,
origin_postal_code: null,
profile_type: null,
domestic_handling_fee: null,
international_handling_fee: null
)