Request Models¶
- class FwShopStatus(value)¶
An enumeration.
- ACTIVE = 'active'¶
- DISABLED = 'disabled'¶
- MODERATION = 'moderation'¶
- class FwProductIdQueryList(product_ids: list[int])¶
- __init__(product_ids: list[int]) None¶
- Parameters:
product_ids (list[int]) – Product IDs of products to be requested; list of integers in [1, 2^32-1] range
- Raises:
- class FwOfferIdQueryList(offer_ids: list[str])¶
- __init__(offer_ids: list[str]) None¶
- Parameters:
offer_ids (list[str]) – Offer IDs of products to be requested; list of non-empty strings limited to 50 chars
- Raises:
- class FwOfferMapping(product_id: int, offer_id: str)¶
- __init__(product_id: int, offer_id: str) None¶
- Parameters:
product_id (int) – Product ID of a product; integer in [1, 2^32-1] range
offer_id (str) – Offer ID of a product; non-empty string limited to 50 chars
- Raises: