|
@ -765,15 +765,15 @@ class StoreListing(Hashable): |
|
|
---------- |
|
|
---------- |
|
|
summary: Optional[:class:`str`] |
|
|
summary: Optional[:class:`str`] |
|
|
The summary of the store listing. |
|
|
The summary of the store listing. |
|
|
summary_localizations: Dict[:class:`Locale`, :class:`str`] |
|
|
summary_localizations: Mapping[:class:`Locale`, :class:`str`] |
|
|
The summary of the store listing localized to different languages. |
|
|
The summary of the store listing localized to different languages. |
|
|
description: Optional[:class:`str`] |
|
|
description: Optional[:class:`str`] |
|
|
The description of the store listing. |
|
|
The description of the store listing. |
|
|
description_localizations: Dict[:class:`Locale`, :class:`str`] |
|
|
description_localizations: Mapping[:class:`Locale`, :class:`str`] |
|
|
The description of the store listing localized to different languages. |
|
|
The description of the store listing localized to different languages. |
|
|
tagline: Optional[:class:`str`] |
|
|
tagline: Optional[:class:`str`] |
|
|
The tagline of the store listing. |
|
|
The tagline of the store listing. |
|
|
tagline_localizations: Dict[:class:`Locale`, :class:`str`] |
|
|
tagline_localizations: Mapping[:class:`Locale`, :class:`str`] |
|
|
The tagline of the store listing localized to different languages. |
|
|
The tagline of the store listing localized to different languages. |
|
|
child_skus: List[:class:`SKU`] |
|
|
child_skus: List[:class:`SKU`] |
|
|
The child SKUs of the store listing. |
|
|
The child SKUs of the store listing. |
|
@ -1324,21 +1324,21 @@ class SKU(Hashable): |
|
|
----------- |
|
|
----------- |
|
|
name: :class:`str` |
|
|
name: :class:`str` |
|
|
The SKU's name. |
|
|
The SKU's name. |
|
|
name_localizations: Dict[:class:`Locale`, :class:`str`] |
|
|
name_localizations: Mapping[:class:`Locale`, :class:`str`] |
|
|
The SKU's name localized to other languages. |
|
|
The SKU's name localized to other languages. |
|
|
legal_notice: Optional[:class:`str`] |
|
|
legal_notice: Optional[:class:`str`] |
|
|
The SKU's legal notice. |
|
|
The SKU's legal notice. |
|
|
legal_notice_localizations: Dict[:class:`Locale`, :class:`str`] |
|
|
legal_notice_localizations: Mapping[:class:`Locale`, :class:`str`] |
|
|
The SKU's legal notice localized to other languages. |
|
|
The SKU's legal notice localized to other languages. |
|
|
price_tier: Optional[:class:`int`] |
|
|
price_tier: Optional[:class:`int`] |
|
|
The price tier of the SKU. |
|
|
The price tier of the SKU. |
|
|
This is the base price in USD that other currencies will be calculated from. |
|
|
This is the base price in USD that other currencies will be calculated from. |
|
|
price_overrides: Dict[:class:`str`, :class:`int`] |
|
|
price_overrides: Mapping[:class:`str`, :class:`int`] |
|
|
A mapping of currency to price. These prices override the base price tier. |
|
|
A mapping of currency to price. These prices override the base price tier. |
|
|
sale_price_tier: Optional[:class:`int`] |
|
|
sale_price_tier: Optional[:class:`int`] |
|
|
The sale price tier of the SKU. |
|
|
The sale price tier of the SKU. |
|
|
This is the base sale price in USD that other currencies will be calculated from. |
|
|
This is the base sale price in USD that other currencies will be calculated from. |
|
|
sale_price_overrides: Dict[:class:`str`, :class:`int`] |
|
|
sale_price_overrides: Mapping[:class:`str`, :class:`int`] |
|
|
A mapping of currency to sale price. These prices override the base sale price tier. |
|
|
A mapping of currency to sale price. These prices override the base sale price tier. |
|
|
dependent_sku: Optional[:class:`SKU`] |
|
|
dependent_sku: Optional[:class:`SKU`] |
|
|
The ID of the SKU that this SKU is dependent on. |
|
|
The ID of the SKU that this SKU is dependent on. |
|
@ -1536,15 +1536,15 @@ class SKU(Hashable): |
|
|
---------- |
|
|
---------- |
|
|
summary: :class:`str` |
|
|
summary: :class:`str` |
|
|
The summary of the store listing. |
|
|
The summary of the store listing. |
|
|
summary_localizations: Optional[Dict[:class:`Locale`, :class:`str`]] |
|
|
summary_localizations: Optional[Mapping[:class:`Locale`, :class:`str`]] |
|
|
The summary of the store listing localized to different languages. |
|
|
The summary of the store listing localized to different languages. |
|
|
description: :class:`str` |
|
|
description: :class:`str` |
|
|
The description of the store listing. |
|
|
The description of the store listing. |
|
|
description_localizations: Optional[Dict[:class:`Locale`, :class:`str`]] |
|
|
description_localizations: Optional[Mapping[:class:`Locale`, :class:`str`]] |
|
|
The description of the store listing localized to different languages. |
|
|
The description of the store listing localized to different languages. |
|
|
tagline: Optional[:class:`str`] |
|
|
tagline: Optional[:class:`str`] |
|
|
The tagline of the store listing. |
|
|
The tagline of the store listing. |
|
|
tagline_localizations: Optional[Dict[:class:`Locale`, :class:`str`]] |
|
|
tagline_localizations: Optional[Mapping[:class:`Locale`, :class:`str`]] |
|
|
The tagline of the store listing localized to different languages. |
|
|
The tagline of the store listing localized to different languages. |
|
|
child_skus: Optional[List[:class:`SKU`]] |
|
|
child_skus: Optional[List[:class:`SKU`]] |
|
|
The child SKUs of the store listing. |
|
|
The child SKUs of the store listing. |
|
|