@gofynd/fdk-client-javascript 0.1.37 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/application.d.ts +2 -1
- package/application.js +2 -1
- package/documentation/application/CART.md +315 -289
- package/documentation/application/CATALOG.md +438 -415
- package/documentation/application/FILESTORAGE.md +2 -0
- package/documentation/application/LEAD.md +18 -18
- package/documentation/application/LOGISTIC.md +45 -45
- package/documentation/application/ORDER.md +277 -277
- package/documentation/application/PAYMENT.md +251 -251
- package/documentation/application/POSCART.md +318 -292
- package/documentation/application/REWARDS.md +1 -0
- package/documentation/application/USER.md +19 -14
- package/documentation/platform/CART.md +465 -462
- package/documentation/platform/CATALOG.md +2792 -2711
- package/documentation/platform/COMPANYPROFILE.md +200 -362
- package/documentation/platform/DISCOUNT.md +86 -0
- package/documentation/platform/FILESTORAGE.md +2 -0
- package/documentation/platform/LEAD.md +60 -60
- package/documentation/platform/ORDER.md +1451 -1654
- package/documentation/platform/PAYMENT.md +94 -94
- package/documentation/platform/REWARDS.md +145 -0
- package/documentation/platform/USER.md +24 -14
- package/index.d.ts +4 -1
- package/index.js +13 -4
- package/package.json +9 -9
- package/platform.d.ts +2 -1
- package/platform.js +3 -2
- package/public.d.ts +1 -0
- package/public.js +3 -2
- package/sdk/application/ApplicationAPIClient.js +3 -1
- package/sdk/application/ApplicationClient.d.ts +16 -16
- package/sdk/application/ApplicationClient.js +32 -16
- package/sdk/application/ApplicationConfig.js +3 -2
- package/sdk/application/ApplicationModels.d.ts +0 -832
- package/sdk/application/ApplicationModels.js +3 -10574
- package/sdk/application/{client → Cart}/CartApplicationClient.d.ts +9 -3
- package/sdk/application/{client → Cart}/CartApplicationClient.js +316 -8
- package/sdk/application/Cart/CartApplicationModel.d.ts +81 -0
- package/sdk/application/Cart/CartApplicationModel.js +1136 -0
- package/sdk/application/{models/CartValidator.js → Cart/CartApplicationValidator.js} +17 -12
- package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
- package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +389 -8
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +117 -0
- package/sdk/application/Catalog/CatalogApplicationModel.js +1606 -0
- package/sdk/application/{models/CatalogValidator.js → Catalog/CatalogApplicationValidator.js} +4 -1
- package/sdk/application/{client → Common}/CommonApplicationClient.js +24 -2
- package/sdk/application/Common/CommonApplicationModel.d.ts +20 -0
- package/sdk/application/Common/CommonApplicationModel.js +228 -0
- package/sdk/{platform/models/CommonValidator.js → application/Common/CommonApplicationValidator.js} +3 -1
- package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +43 -2
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +15 -0
- package/sdk/application/Communication/CommunicationApplicationModel.js +144 -0
- package/sdk/application/{models/CommunicationValidator.js → Communication/CommunicationApplicationValidator.js} +5 -3
- package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +202 -2
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +111 -0
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +1182 -0
- package/sdk/application/{models/ConfigurationValidator.js → Configuration/ConfigurationApplicationValidator.js} +4 -2
- package/sdk/application/{client → Content}/ContentApplicationClient.js +217 -2
- package/sdk/application/Content/ContentApplicationModel.d.ts +105 -0
- package/sdk/application/Content/ContentApplicationModel.js +1349 -0
- package/sdk/application/{models/ContentValidator.js → Content/ContentApplicationValidator.js} +3 -1
- package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +35 -2
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +21 -0
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +244 -0
- package/sdk/application/{models/FileStorageValidator.js → FileStorage/FileStorageApplicationValidator.js} +6 -4
- package/sdk/application/{client → Lead}/LeadApplicationClient.js +83 -2
- package/sdk/application/Lead/LeadApplicationModel.d.ts +55 -0
- package/sdk/application/Lead/LeadApplicationModel.js +690 -0
- package/sdk/application/{models/LeadValidator.js → Lead/LeadApplicationValidator.js} +6 -4
- package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +46 -2
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +26 -0
- package/sdk/application/Logistic/LogisticApplicationModel.js +286 -0
- package/sdk/application/{models/LogisticValidator.js → Logistic/LogisticApplicationValidator.js} +5 -3
- package/sdk/application/{client → Order}/OrderApplicationClient.js +148 -2
- package/sdk/application/Order/OrderApplicationModel.d.ts +67 -0
- package/sdk/application/Order/OrderApplicationModel.js +872 -0
- package/sdk/application/{models/OrderValidator.js → Order/OrderApplicationValidator.js} +5 -3
- package/sdk/application/{client → Payment}/PaymentApplicationClient.js +530 -2
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +96 -0
- package/sdk/application/Payment/PaymentApplicationModel.js +1318 -0
- package/sdk/application/{models/PaymentValidator.js → Payment/PaymentApplicationValidator.js} +25 -23
- package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
- package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +343 -8
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +79 -0
- package/sdk/application/PosCart/PosCartApplicationModel.js +1132 -0
- package/sdk/application/{models/PosCartValidator.js → PosCart/PosCartApplicationValidator.js} +18 -13
- package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +83 -2
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +23 -0
- package/sdk/application/Rewards/RewardsApplicationModel.js +276 -0
- package/sdk/application/{models/RewardsValidator.js → Rewards/RewardsApplicationValidator.js} +6 -4
- package/sdk/application/{client → Share}/ShareApplicationClient.js +89 -2
- package/sdk/application/Share/ShareApplicationModel.d.ts +16 -0
- package/sdk/application/Share/ShareApplicationModel.js +178 -0
- package/sdk/application/{models/ShareValidator.js → Share/ShareApplicationValidator.js} +4 -2
- package/sdk/application/{client → Theme}/ThemeApplicationClient.js +46 -2
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +49 -0
- package/sdk/application/Theme/ThemeApplicationModel.js +486 -0
- package/sdk/application/{models/ThemeValidator.js → Theme/ThemeApplicationValidator.js} +3 -1
- package/sdk/application/{client → User}/UserApplicationClient.js +407 -2
- package/sdk/application/User/UserApplicationModel.d.ts +95 -0
- package/sdk/application/User/UserApplicationModel.js +998 -0
- package/sdk/application/{models/UserValidator.js → User/UserApplicationValidator.js} +31 -29
- package/sdk/application/index.d.ts +18 -0
- package/sdk/application/index.js +33 -0
- package/sdk/common/AxiosHelper.js +23 -10
- package/sdk/common/Logger.d.ts +2 -0
- package/sdk/common/Logger.js +6 -0
- package/sdk/common/curlHelper.d.ts +2 -0
- package/sdk/common/curlHelper.js +95 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +101 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +399 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +11 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +56 -0
- package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.js +60 -2
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +23 -0
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +252 -0
- package/sdk/platform/{models/AnalyticsValidator.js → Analytics/AnalyticsPlatformValidator.js} +5 -4
- package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.js +48 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +18 -0
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +144 -0
- package/sdk/platform/{models/AuditTrailValidator.js → AuditTrail/AuditTrailPlatformValidator.js} +3 -2
- package/sdk/platform/{client → Billing}/BillingPlatformClient.js +162 -2
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +65 -0
- package/sdk/platform/Billing/BillingPlatformModel.js +906 -0
- package/sdk/platform/{models/BillingValidator.js → Billing/BillingPlatformValidator.js} +6 -5
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +293 -0
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +1001 -0
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +20 -0
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +138 -0
- package/sdk/platform/Cart/CartPlatformModel.d.ts +104 -0
- package/sdk/platform/Cart/CartPlatformModel.js +1516 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +856 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2927 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +56 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +389 -0
- package/sdk/platform/{client → Catalog}/CatalogPlatformClient.js +1402 -349
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +317 -0
- package/sdk/platform/Catalog/CatalogPlatformModel.js +4702 -0
- package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +92 -91
- package/sdk/platform/{client → Common}/CommonPlatformClient.js +28 -2
- package/sdk/platform/Common/CommonPlatformModel.d.ts +20 -0
- package/sdk/platform/Common/CommonPlatformModel.js +228 -0
- package/sdk/{application/models/CommonValidator.js → platform/Common/CommonPlatformValidator.js} +2 -1
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +611 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +2243 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +43 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +277 -0
- package/sdk/platform/{client → Communication}/CommunicationPlatformClient.js +17 -2
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +102 -0
- package/sdk/platform/Communication/CommunicationPlatformModel.js +1312 -0
- package/sdk/platform/{models/CommunicationValidator.js → Communication/CommunicationPlatformValidator.js} +2 -1
- package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.d.ts +0 -9
- package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.js +176 -28
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +44 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +706 -0
- package/sdk/platform/{models/CompanyProfileValidator.d.ts → CompanyProfile/CompanyProfilePlatformValidator.d.ts} +0 -1
- package/sdk/platform/{models/CompanyProfileValidator.js → CompanyProfile/CompanyProfilePlatformValidator.js} +9 -14
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +309 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1322 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +31 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +164 -0
- package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.js +284 -2
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +185 -0
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2072 -0
- package/sdk/platform/{models/ConfigurationValidator.js → Configuration/ConfigurationPlatformValidator.js} +9 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +781 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +3074 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +71 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +422 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +105 -0
- package/sdk/platform/Content/ContentPlatformModel.js +1349 -0
- package/sdk/platform/{client → Discount}/DiscountPlatformClient.d.ts +11 -0
- package/sdk/platform/{client → Discount}/DiscountPlatformClient.js +187 -2
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +15 -0
- package/sdk/platform/Discount/DiscountPlatformModel.js +176 -0
- package/sdk/platform/{models/DiscountValidator.d.ts → Discount/DiscountPlatformValidator.d.ts} +1 -0
- package/sdk/platform/{models/DiscountValidator.js → Discount/DiscountPlatformValidator.js} +13 -5
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +114 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +301 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +7 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +38 -0
- package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.js +78 -2
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +21 -0
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +244 -0
- package/sdk/platform/{models/FileStorageValidator.js → FileStorage/FileStoragePlatformValidator.js} +6 -5
- package/sdk/platform/{client → Inventory}/InventoryPlatformClient.js +163 -2
- package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +62 -0
- package/sdk/platform/Inventory/InventoryPlatformModel.js +1178 -0
- package/sdk/platform/{models/InventoryValidator.js → Inventory/InventoryPlatformValidator.js} +5 -4
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +138 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +559 -0
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +16 -0
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +90 -0
- package/sdk/platform/{client → Lead}/LeadPlatformClient.js +142 -2
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +55 -0
- package/sdk/platform/Lead/LeadPlatformModel.js +690 -0
- package/sdk/platform/{models/LeadValidator.js → Lead/LeadPlatformValidator.js} +7 -6
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +59 -0
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +207 -0
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +6 -0
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +37 -0
- package/sdk/platform/{client → Order}/OrderPlatformClient.d.ts +24 -55
- package/sdk/platform/{client → Order}/OrderPlatformClient.js +693 -146
- package/sdk/platform/Order/OrderPlatformModel.d.ts +222 -0
- package/sdk/platform/Order/OrderPlatformModel.js +3466 -0
- package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +2 -3
- package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +32 -48
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +100 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +5 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +20 -0
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +7 -0
- package/sdk/platform/Partner/PartnerPlatformModel.js +54 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +108 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +498 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +14 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +73 -0
- package/sdk/platform/{client → Payment}/PaymentPlatformClient.js +141 -2
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +44 -0
- package/sdk/platform/Payment/PaymentPlatformModel.js +552 -0
- package/sdk/platform/{models/PaymentValidator.js → Payment/PaymentPlatformValidator.js} +6 -5
- package/sdk/platform/PlatformAPIClient.js +2 -1
- package/sdk/platform/PlatformApplicationClient.d.ts +2824 -18486
- package/sdk/platform/PlatformApplicationClient.js +3772 -13928
- package/sdk/platform/PlatformClient.d.ts +2824 -2881
- package/sdk/platform/PlatformClient.js +3710 -3145
- package/sdk/platform/PlatformConfig.js +2 -1
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +150 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +597 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +16 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +91 -0
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +24 -0
- package/sdk/platform/Rewards/RewardsPlatformModel.js +294 -0
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +72 -0
- package/sdk/platform/Share/SharePlatformApplicationClient.js +235 -0
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +7 -0
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +35 -0
- package/sdk/platform/Share/SharePlatformModel.d.ts +15 -0
- package/sdk/platform/Share/SharePlatformModel.js +170 -0
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +238 -0
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +997 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +27 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +155 -0
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +49 -0
- package/sdk/platform/Theme/ThemePlatformModel.js +486 -0
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +121 -0
- package/sdk/platform/User/UserPlatformApplicationClient.js +506 -0
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -0
- package/sdk/platform/User/UserPlatformApplicationValidator.js +79 -0
- package/sdk/platform/User/UserPlatformModel.d.ts +95 -0
- package/sdk/platform/User/UserPlatformModel.js +998 -0
- package/sdk/platform/{client → Webhook}/WebhookPlatformClient.js +92 -2
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +17 -0
- package/sdk/platform/Webhook/WebhookPlatformModel.js +208 -0
- package/sdk/platform/{models/WebhookValidator.js → Webhook/WebhookPlatformValidator.js} +4 -3
- package/sdk/platform/index.d.ts +24 -0
- package/sdk/platform/index.js +45 -0
- package/sdk/public/{client → Configuration}/ConfigurationPublicClient.js +26 -1
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +20 -0
- package/sdk/public/Configuration/ConfigurationPublicModel.js +230 -0
- package/sdk/public/{models/ConfigurationValidator.js → Configuration/ConfigurationPublicValidator.js} +3 -1
- package/sdk/public/{client → Inventory}/InventoryPublicClient.js +76 -1
- package/sdk/public/Inventory/InventoryPublicModel.d.ts +22 -0
- package/sdk/public/Inventory/InventoryPublicModel.js +334 -0
- package/sdk/public/{models/InventoryValidator.js → Inventory/InventoryPublicValidator.js} +4 -2
- package/sdk/public/PublicClient.d.ts +3 -3
- package/sdk/public/PublicClient.js +8 -3
- package/sdk/public/{client → Webhook}/WebhookPublicClient.js +30 -1
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +17 -0
- package/sdk/public/Webhook/WebhookPublicModel.js +208 -0
- package/sdk/public/{models/WebhookValidator.js → Webhook/WebhookPublicValidator.js} +4 -2
- package/sdk/public/index.d.ts +5 -0
- package/sdk/public/index.js +7 -0
- package/sdk/platform/PlatformApplicationModels.d.ts +0 -328
- package/sdk/platform/PlatformApplicationModels.js +0 -22658
- package/sdk/platform/PlatformModels.d.ts +0 -1477
- package/sdk/platform/PlatformModels.js +0 -20646
- package/sdk/platform/models/CartValidator.d.ts +0 -0
- package/sdk/platform/models/CartValidator.js +0 -0
- package/sdk/platform/models/ContentValidator.d.ts +0 -0
- package/sdk/platform/models/ContentValidator.js +0 -0
- package/sdk/platform/models/PartnerValidator.d.ts +0 -0
- package/sdk/platform/models/PartnerValidator.js +0 -0
- package/sdk/platform/models/RewardsValidator.d.ts +0 -0
- package/sdk/platform/models/RewardsValidator.js +0 -0
- package/sdk/platform/models/ShareValidator.d.ts +0 -0
- package/sdk/platform/models/ShareValidator.js +0 -0
- package/sdk/platform/models/ThemeValidator.d.ts +0 -0
- package/sdk/platform/models/ThemeValidator.js +0 -0
- package/sdk/platform/models/UserValidator.d.ts +0 -0
- package/sdk/platform/models/UserValidator.js +0 -0
- package/sdk/public/PublicModels.d.ts +0 -50
- package/sdk/public/PublicModels.js +0 -712
- package/sdk/application/{models/CartValidator.d.ts → Cart/CartApplicationValidator.d.ts} +0 -0
- package/sdk/application/{models/CatalogValidator.d.ts → Catalog/CatalogApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Common}/CommonApplicationClient.d.ts +0 -0
- package/sdk/application/{models/CommonValidator.d.ts → Common/CommonApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Communication}/CommunicationApplicationClient.d.ts +0 -0
- package/sdk/application/{models/CommunicationValidator.d.ts → Communication/CommunicationApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Content}/ContentApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ContentValidator.d.ts → Content/ContentApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.d.ts +0 -0
- package/sdk/application/{models/FileStorageValidator.d.ts → FileStorage/FileStorageApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Lead}/LeadApplicationClient.d.ts +0 -0
- package/sdk/application/{models/LeadValidator.d.ts → Lead/LeadApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Logistic}/LogisticApplicationClient.d.ts +0 -0
- package/sdk/application/{models/LogisticValidator.d.ts → Logistic/LogisticApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Order}/OrderApplicationClient.d.ts +0 -0
- package/sdk/application/{models/OrderValidator.d.ts → Order/OrderApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Payment}/PaymentApplicationClient.d.ts +0 -0
- package/sdk/application/{models/PaymentValidator.d.ts → Payment/PaymentApplicationValidator.d.ts} +0 -0
- package/sdk/application/{models/PosCartValidator.d.ts → PosCart/PosCartApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Rewards}/RewardsApplicationClient.d.ts +0 -0
- package/sdk/application/{models/RewardsValidator.d.ts → Rewards/RewardsApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Share}/ShareApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ShareValidator.d.ts → Share/ShareApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Theme}/ThemeApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ThemeValidator.d.ts → Theme/ThemeApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → User}/UserApplicationClient.d.ts +0 -0
- package/sdk/application/{models/UserValidator.d.ts → User/UserApplicationValidator.d.ts} +0 -0
- package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/AnalyticsValidator.d.ts → Analytics/AnalyticsPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/AuditTrailValidator.d.ts → AuditTrail/AuditTrailPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → Billing}/BillingPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/BillingValidator.d.ts → Billing/BillingPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → Catalog}/CatalogPlatformClient.d.ts +149 -149
- package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +21 -21
- /package/sdk/platform/{client → Common}/CommonPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/CommonValidator.d.ts → Common/CommonPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Communication}/CommunicationPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/CommunicationValidator.d.ts → Communication/CommunicationPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/FileStorageValidator.d.ts → FileStorage/FileStoragePlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Inventory}/InventoryPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/InventoryValidator.d.ts → Inventory/InventoryPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Lead}/LeadPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/LeadValidator.d.ts → Lead/LeadPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Payment}/PaymentPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/PaymentValidator.d.ts → Payment/PaymentPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Webhook}/WebhookPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/WebhookValidator.d.ts → Webhook/WebhookPlatformValidator.d.ts} +0 -0
- /package/sdk/public/{client → Configuration}/ConfigurationPublicClient.d.ts +0 -0
- /package/sdk/public/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPublicValidator.d.ts} +0 -0
- /package/sdk/public/{client → Inventory}/InventoryPublicClient.d.ts +0 -0
- /package/sdk/public/{models/InventoryValidator.d.ts → Inventory/InventoryPublicValidator.d.ts} +0 -0
- /package/sdk/public/{client → Webhook}/WebhookPublicClient.d.ts +0 -0
- /package/sdk/public/{models/WebhookValidator.d.ts → Webhook/WebhookPublicValidator.d.ts} +0 -0
|
@@ -7581,13 +7581,15 @@ Get the price of a product size at a PIN Code
|
|
|
7581
7581
|
const promise = catalog.getProductPriceBySlug({ slug : value,
|
|
7582
7582
|
size : value,
|
|
7583
7583
|
storeId : value,
|
|
7584
|
-
pincode : value
|
|
7584
|
+
pincode : value,
|
|
7585
|
+
moq : value });
|
|
7585
7586
|
|
|
7586
7587
|
// Async/Await
|
|
7587
7588
|
const data = await catalog.getProductPriceBySlug({ slug : value,
|
|
7588
7589
|
size : value,
|
|
7589
7590
|
storeId : value,
|
|
7590
|
-
pincode : value
|
|
7591
|
+
pincode : value,
|
|
7592
|
+
moq : value });
|
|
7591
7593
|
```
|
|
7592
7594
|
|
|
7593
7595
|
|
|
@@ -7599,7 +7601,8 @@ const data = await catalog.getProductPriceBySlug({ slug : value,
|
|
|
7599
7601
|
| slug | string | yes | A short, human-readable, URL-friendly identifier of a product. You can get slug value from the endpoint /service/application/catalog/v1.0/products/ |
|
|
7600
7602
|
| size | string | yes | A string indicating the size of the product, e.g. S, M, XL. You can get slug value from the endpoint /service/application/catalog/v1.0/products/sizes |
|
|
7601
7603
|
| storeId | number | no | The ID of the store that is selling the product, e.g. 1,2,3. |
|
|
7602
|
-
| pincode | string | no | The PIN Code of the area near which the selling locations should be searched, e.g. 400059. |
|
|
7604
|
+
| pincode | string | no | The PIN Code of the area near which the selling locations should be searched, e.g. 400059. |
|
|
7605
|
+
| moq | number | no | An Integer indication the Minimum Order Quantity of a product, e.g. 100. |
|
|
7603
7606
|
|
|
7604
7607
|
|
|
7605
7608
|
|
|
@@ -7610,9 +7613,9 @@ Prices may vary for different sizes of a product. Use this API to retrieve the p
|
|
|
7610
7613
|
|
|
7611
7614
|
|
|
7612
7615
|
|
|
7613
|
-
[
|
|
7616
|
+
[ProductSizePriceResponseV3](#ProductSizePriceResponseV3)
|
|
7614
7617
|
|
|
7615
|
-
Success. Returns a
|
|
7618
|
+
Success. Returns a ProductSizePriceV3 object. Check the example shown below or refer `ProductSizePriceResponseV3` for more details.
|
|
7616
7619
|
|
|
7617
7620
|
|
|
7618
7621
|
|
|
@@ -7759,9 +7762,9 @@ A product of a particular size may be sold by multiple sellers. Use this API to
|
|
|
7759
7762
|
|
|
7760
7763
|
|
|
7761
7764
|
|
|
7762
|
-
[
|
|
7765
|
+
[ProductSizeSellersResponseV3](#ProductSizeSellersResponseV3)
|
|
7763
7766
|
|
|
7764
|
-
Success. Returns a
|
|
7767
|
+
Success. Returns a ProductSizeSellerV3 object. Check the example shown below or refer `ProductSizeSellersResponseV3` for more details.
|
|
7765
7768
|
|
|
7766
7769
|
|
|
7767
7770
|
|
|
@@ -7885,91 +7888,102 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
7885
7888
|
|
|
7886
7889
|
|
|
7887
7890
|
|
|
7888
|
-
#### [
|
|
7891
|
+
#### [ProductListingActionPage](#ProductListingActionPage)
|
|
7889
7892
|
|
|
7890
7893
|
| Properties | Type | Nullable | Description |
|
|
7891
7894
|
| ---------- | ---- | -------- | ----------- |
|
|
7892
|
-
|
|
|
7893
|
-
|
|
|
7894
|
-
|
|
|
7895
|
-
| min | number | no | |
|
|
7895
|
+
| type | string | no | |
|
|
7896
|
+
| query | string | no | |
|
|
7897
|
+
| params | string | no | |
|
|
7896
7898
|
|
|
7897
7899
|
---
|
|
7898
7900
|
|
|
7899
7901
|
|
|
7900
7902
|
|
|
7901
7903
|
|
|
7902
|
-
#### [
|
|
7904
|
+
#### [ProductListingAction](#ProductListingAction)
|
|
7903
7905
|
|
|
7904
7906
|
| Properties | Type | Nullable | Description |
|
|
7905
7907
|
| ---------- | ---- | -------- | ----------- |
|
|
7906
|
-
|
|
|
7907
|
-
|
|
|
7908
|
+
| type | string | no | |
|
|
7909
|
+
| page | [ProductListingActionPage](#ProductListingActionPage) | no | |
|
|
7908
7910
|
|
|
7909
7911
|
---
|
|
7910
7912
|
|
|
7911
7913
|
|
|
7912
7914
|
|
|
7913
7915
|
|
|
7914
|
-
#### [
|
|
7916
|
+
#### [Meta](#Meta)
|
|
7915
7917
|
|
|
7916
7918
|
| Properties | Type | Nullable | Description |
|
|
7917
7919
|
| ---------- | ---- | -------- | ----------- |
|
|
7918
|
-
|
|
|
7919
|
-
| params | string | no | |
|
|
7920
|
-
| query | string | no | |
|
|
7920
|
+
| source | string | no | |
|
|
7921
7921
|
|
|
7922
7922
|
---
|
|
7923
7923
|
|
|
7924
7924
|
|
|
7925
7925
|
|
|
7926
7926
|
|
|
7927
|
-
#### [
|
|
7927
|
+
#### [Media](#Media)
|
|
7928
7928
|
|
|
7929
7929
|
| Properties | Type | Nullable | Description |
|
|
7930
7930
|
| ---------- | ---- | -------- | ----------- |
|
|
7931
|
-
| page | [ProductListingActionPage](#ProductListingActionPage) | no | |
|
|
7932
7931
|
| type | string | no | |
|
|
7932
|
+
| meta | [Meta](#Meta) | no | |
|
|
7933
|
+
| alt | string | no | |
|
|
7934
|
+
| url | string | no | |
|
|
7933
7935
|
|
|
7934
7936
|
---
|
|
7935
7937
|
|
|
7936
7938
|
|
|
7937
7939
|
|
|
7938
7940
|
|
|
7939
|
-
#### [
|
|
7941
|
+
#### [ProductBrand](#ProductBrand)
|
|
7940
7942
|
|
|
7941
7943
|
| Properties | Type | Nullable | Description |
|
|
7942
7944
|
| ---------- | ---- | -------- | ----------- |
|
|
7943
|
-
|
|
|
7945
|
+
| description | string | no | |
|
|
7946
|
+
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
7947
|
+
| uid | number | no | |
|
|
7948
|
+
| name | string | no | |
|
|
7949
|
+
| logo | [Media](#Media) | no | |
|
|
7944
7950
|
|
|
7945
7951
|
---
|
|
7946
7952
|
|
|
7947
7953
|
|
|
7948
7954
|
|
|
7949
7955
|
|
|
7950
|
-
#### [
|
|
7956
|
+
#### [NetQuantity](#NetQuantity)
|
|
7951
7957
|
|
|
7952
7958
|
| Properties | Type | Nullable | Description |
|
|
7953
7959
|
| ---------- | ---- | -------- | ----------- |
|
|
7954
|
-
|
|
|
7955
|
-
|
|
|
7956
|
-
| meta | [Meta](#Meta) | no | |
|
|
7957
|
-
| url | string | no | |
|
|
7960
|
+
| value | number | no | |
|
|
7961
|
+
| unit | any | no | |
|
|
7958
7962
|
|
|
7959
7963
|
---
|
|
7960
7964
|
|
|
7961
7965
|
|
|
7962
7966
|
|
|
7963
7967
|
|
|
7964
|
-
#### [
|
|
7968
|
+
#### [ProductCategoryMap](#ProductCategoryMap)
|
|
7965
7969
|
|
|
7966
7970
|
| Properties | Type | Nullable | Description |
|
|
7967
7971
|
| ---------- | ---- | -------- | ----------- |
|
|
7968
|
-
|
|
|
7969
|
-
|
|
|
7970
|
-
|
|
|
7971
|
-
|
|
7972
|
-
|
|
7972
|
+
| l1 | [ProductBrand](#ProductBrand) | no | |
|
|
7973
|
+
| l2 | [ProductBrand](#ProductBrand) | no | |
|
|
7974
|
+
| l3 | [ProductBrand](#ProductBrand) | no | |
|
|
7975
|
+
|
|
7976
|
+
---
|
|
7977
|
+
|
|
7978
|
+
|
|
7979
|
+
|
|
7980
|
+
|
|
7981
|
+
#### [ApplicationItemSEO](#ApplicationItemSEO)
|
|
7982
|
+
|
|
7983
|
+
| Properties | Type | Nullable | Description |
|
|
7984
|
+
| ---------- | ---- | -------- | ----------- |
|
|
7985
|
+
| description | any | no | |
|
|
7986
|
+
| title | any | no | |
|
|
7973
7987
|
|
|
7974
7988
|
---
|
|
7975
7989
|
|
|
@@ -8001,49 +8015,51 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8001
8015
|
|
|
8002
8016
|
|
|
8003
8017
|
|
|
8004
|
-
#### [
|
|
8018
|
+
#### [Price](#Price)
|
|
8005
8019
|
|
|
8006
8020
|
| Properties | Type | Nullable | Description |
|
|
8007
8021
|
| ---------- | ---- | -------- | ----------- |
|
|
8008
|
-
|
|
|
8009
|
-
|
|
|
8022
|
+
| min | number | no | |
|
|
8023
|
+
| max | number | no | |
|
|
8024
|
+
| currency_code | string | no | |
|
|
8025
|
+
| currency_symbol | string | no | |
|
|
8010
8026
|
|
|
8011
8027
|
---
|
|
8012
8028
|
|
|
8013
8029
|
|
|
8014
8030
|
|
|
8015
8031
|
|
|
8016
|
-
#### [
|
|
8032
|
+
#### [ProductListingPrice](#ProductListingPrice)
|
|
8017
8033
|
|
|
8018
8034
|
| Properties | Type | Nullable | Description |
|
|
8019
8035
|
| ---------- | ---- | -------- | ----------- |
|
|
8020
|
-
|
|
|
8021
|
-
|
|
|
8022
|
-
| maximum | number | no | |
|
|
8036
|
+
| marked | [Price](#Price) | no | |
|
|
8037
|
+
| effective | [Price](#Price) | no | |
|
|
8023
8038
|
|
|
8024
8039
|
---
|
|
8025
8040
|
|
|
8026
8041
|
|
|
8027
8042
|
|
|
8028
8043
|
|
|
8029
|
-
#### [
|
|
8044
|
+
#### [CustomMetaFields](#CustomMetaFields)
|
|
8030
8045
|
|
|
8031
8046
|
| Properties | Type | Nullable | Description |
|
|
8032
8047
|
| ---------- | ---- | -------- | ----------- |
|
|
8033
|
-
|
|
|
8034
|
-
|
|
|
8048
|
+
| value | string | yes | |
|
|
8049
|
+
| key | string | yes | |
|
|
8035
8050
|
|
|
8036
8051
|
---
|
|
8037
8052
|
|
|
8038
8053
|
|
|
8039
8054
|
|
|
8040
8055
|
|
|
8041
|
-
#### [
|
|
8056
|
+
#### [ApplicationItemMOQ](#ApplicationItemMOQ)
|
|
8042
8057
|
|
|
8043
8058
|
| Properties | Type | Nullable | Description |
|
|
8044
8059
|
| ---------- | ---- | -------- | ----------- |
|
|
8045
|
-
|
|
|
8046
|
-
|
|
|
8060
|
+
| increment_unit | number | no | |
|
|
8061
|
+
| maximum | number | no | |
|
|
8062
|
+
| minimum | number | no | |
|
|
8047
8063
|
|
|
8048
8064
|
---
|
|
8049
8065
|
|
|
@@ -8054,39 +8070,40 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8054
8070
|
|
|
8055
8071
|
| Properties | Type | Nullable | Description |
|
|
8056
8072
|
| ---------- | ---- | -------- | ----------- |
|
|
8057
|
-
| discount | string | no | |
|
|
8058
|
-
| teaser_tag | string | no | |
|
|
8059
8073
|
| attributes | string | no | |
|
|
8060
|
-
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8061
8074
|
| brand | [ProductBrand](#ProductBrand) | no | |
|
|
8075
|
+
| highlights | [string] | no | |
|
|
8076
|
+
| teaser_tag | string | no | |
|
|
8077
|
+
| net_quantity | [NetQuantity](#NetQuantity) | no | |
|
|
8062
8078
|
| similars | [string] | no | |
|
|
8063
|
-
|
|
|
8064
|
-
|
|
|
8079
|
+
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8080
|
+
| category_map | [ProductCategoryMap](#ProductCategoryMap) | no | |
|
|
8065
8081
|
| color | string | no | |
|
|
8066
|
-
|
|
|
8067
|
-
|
|
|
8068
|
-
| moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
|
|
8069
|
-
| rating | number | no | |
|
|
8070
|
-
| uid | number | no | |
|
|
8071
|
-
| type | string | no | |
|
|
8072
|
-
| tryouts | [string] | no | |
|
|
8082
|
+
| is_dependent | boolean | no | |
|
|
8083
|
+
| slug | string | yes | |
|
|
8073
8084
|
| seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
|
|
8074
8085
|
| has_variant | boolean | no | |
|
|
8086
|
+
| item_code | string | no | |
|
|
8087
|
+
| grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
|
|
8088
|
+
| medias | [[Media](#Media)] | no | |
|
|
8089
|
+
| categories | [[ProductBrand](#ProductBrand)] | no | |
|
|
8075
8090
|
| tags | [string] | no | |
|
|
8076
|
-
|
|
|
8077
|
-
|
|
|
8078
|
-
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8079
|
-
| highlights | [string] | no | |
|
|
8080
|
-
| product_online_date | string | no | |
|
|
8091
|
+
| rating | number | no | |
|
|
8092
|
+
| type | string | no | |
|
|
8081
8093
|
| rating_count | number | no | |
|
|
8082
|
-
| name | string | no | |
|
|
8083
8094
|
| description | string | no | |
|
|
8084
|
-
|
|
|
8085
|
-
|
|
|
8086
|
-
|
|
|
8087
|
-
|
|
|
8095
|
+
| discount | string | no | |
|
|
8096
|
+
| short_description | string | no | |
|
|
8097
|
+
| _custom_json | string | no | |
|
|
8098
|
+
| uid | number | no | |
|
|
8099
|
+
| image_nature | string | no | |
|
|
8100
|
+
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8101
|
+
| _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
|
|
8102
|
+
| moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
|
|
8088
8103
|
| item_type | string | no | |
|
|
8089
|
-
|
|
|
8104
|
+
| name | string | no | |
|
|
8105
|
+
| tryouts | [string] | no | |
|
|
8106
|
+
| product_online_date | string | no | |
|
|
8090
8107
|
|
|
8091
8108
|
---
|
|
8092
8109
|
|
|
@@ -8108,11 +8125,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8108
8125
|
|
|
8109
8126
|
| Properties | Type | Nullable | Description |
|
|
8110
8127
|
| ---------- | ---- | -------- | ----------- |
|
|
8111
|
-
| is_default | boolean | yes | |
|
|
8112
|
-
| unit | string | yes | |
|
|
8113
|
-
| width | number | yes | |
|
|
8114
8128
|
| length | number | yes | |
|
|
8129
|
+
| unit | string | yes | |
|
|
8115
8130
|
| height | number | yes | |
|
|
8131
|
+
| width | number | yes | |
|
|
8132
|
+
| is_default | boolean | yes | |
|
|
8116
8133
|
|
|
8117
8134
|
---
|
|
8118
8135
|
|
|
@@ -8124,8 +8141,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8124
8141
|
| Properties | Type | Nullable | Description |
|
|
8125
8142
|
| ---------- | ---- | -------- | ----------- |
|
|
8126
8143
|
| unit | string | yes | |
|
|
8127
|
-
| is_default | boolean | yes | |
|
|
8128
8144
|
| shipping | number | yes | |
|
|
8145
|
+
| is_default | boolean | yes | |
|
|
8129
8146
|
|
|
8130
8147
|
---
|
|
8131
8148
|
|
|
@@ -8136,12 +8153,12 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8136
8153
|
|
|
8137
8154
|
| Properties | Type | Nullable | Description |
|
|
8138
8155
|
| ---------- | ---- | -------- | ----------- |
|
|
8139
|
-
| seller_identifiers | [string] | no | |
|
|
8140
|
-
| is_available | boolean | no | |
|
|
8141
|
-
| dimension | [Dimension](#Dimension) | no | |
|
|
8142
|
-
| display | string | no | |
|
|
8143
8156
|
| quantity | number | no | |
|
|
8157
|
+
| dimension | [Dimension](#Dimension) | no | |
|
|
8144
8158
|
| value | string | no | |
|
|
8159
|
+
| display | string | no | |
|
|
8160
|
+
| is_available | boolean | no | |
|
|
8161
|
+
| seller_identifiers | [string] | no | |
|
|
8145
8162
|
| weight | [Weight](#Weight) | no | |
|
|
8146
8163
|
|
|
8147
8164
|
---
|
|
@@ -8149,16 +8166,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8149
8166
|
|
|
8150
8167
|
|
|
8151
8168
|
|
|
8152
|
-
#### [
|
|
8169
|
+
#### [ProductSizeStores](#ProductSizeStores)
|
|
8153
8170
|
|
|
8154
8171
|
| Properties | Type | Nullable | Description |
|
|
8155
8172
|
| ---------- | ---- | -------- | ----------- |
|
|
8156
|
-
|
|
|
8157
|
-
| col_1 | string | no | |
|
|
8158
|
-
| col_3 | string | no | |
|
|
8159
|
-
| col_5 | string | no | |
|
|
8160
|
-
| col_2 | string | no | |
|
|
8161
|
-
| col_4 | string | no | |
|
|
8173
|
+
| count | number | no | |
|
|
8162
8174
|
|
|
8163
8175
|
---
|
|
8164
8176
|
|
|
@@ -8169,8 +8181,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8169
8181
|
|
|
8170
8182
|
| Properties | Type | Nullable | Description |
|
|
8171
8183
|
| ---------- | ---- | -------- | ----------- |
|
|
8172
|
-
| convertable | boolean | no | |
|
|
8173
8184
|
| value | string | no | |
|
|
8185
|
+
| convertable | boolean | no | |
|
|
8174
8186
|
|
|
8175
8187
|
---
|
|
8176
8188
|
|
|
@@ -8181,10 +8193,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8181
8193
|
|
|
8182
8194
|
| Properties | Type | Nullable | Description |
|
|
8183
8195
|
| ---------- | ---- | -------- | ----------- |
|
|
8184
|
-
| col_6 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8185
|
-
| col_1 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8186
8196
|
| col_3 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8197
|
+
| col_6 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8187
8198
|
| col_5 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8199
|
+
| col_1 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8188
8200
|
| col_2 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8189
8201
|
| col_4 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8190
8202
|
|
|
@@ -8193,28 +8205,33 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8193
8205
|
|
|
8194
8206
|
|
|
8195
8207
|
|
|
8196
|
-
#### [
|
|
8208
|
+
#### [SizeChartValues](#SizeChartValues)
|
|
8197
8209
|
|
|
8198
8210
|
| Properties | Type | Nullable | Description |
|
|
8199
8211
|
| ---------- | ---- | -------- | ----------- |
|
|
8200
|
-
|
|
|
8201
|
-
|
|
|
8202
|
-
|
|
|
8203
|
-
|
|
|
8204
|
-
|
|
|
8205
|
-
|
|
|
8206
|
-
| size_tip | string | no | |
|
|
8212
|
+
| col_3 | string | no | |
|
|
8213
|
+
| col_6 | string | no | |
|
|
8214
|
+
| col_5 | string | no | |
|
|
8215
|
+
| col_1 | string | no | |
|
|
8216
|
+
| col_2 | string | no | |
|
|
8217
|
+
| col_4 | string | no | |
|
|
8207
8218
|
|
|
8208
8219
|
---
|
|
8209
8220
|
|
|
8210
8221
|
|
|
8211
8222
|
|
|
8212
8223
|
|
|
8213
|
-
#### [
|
|
8224
|
+
#### [SizeChart](#SizeChart)
|
|
8214
8225
|
|
|
8215
8226
|
| Properties | Type | Nullable | Description |
|
|
8216
8227
|
| ---------- | ---- | -------- | ----------- |
|
|
8217
|
-
|
|
|
8228
|
+
| image | string | no | |
|
|
8229
|
+
| unit | string | no | |
|
|
8230
|
+
| headers | [ColumnHeaders](#ColumnHeaders) | no | |
|
|
8231
|
+
| description | string | no | |
|
|
8232
|
+
| size_tip | string | no | |
|
|
8233
|
+
| sizes | [[SizeChartValues](#SizeChartValues)] | no | |
|
|
8234
|
+
| title | string | no | |
|
|
8218
8235
|
|
|
8219
8236
|
---
|
|
8220
8237
|
|
|
@@ -8225,13 +8242,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8225
8242
|
|
|
8226
8243
|
| Properties | Type | Nullable | Description |
|
|
8227
8244
|
| ---------- | ---- | -------- | ----------- |
|
|
8228
|
-
| sizes | [[ProductSize](#ProductSize)] | no | |
|
|
8229
|
-
| sellable | boolean | no | |
|
|
8230
8245
|
| discount | string | no | |
|
|
8231
|
-
| size_chart | [SizeChart](#SizeChart) | no | |
|
|
8232
|
-
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8233
8246
|
| multi_size | boolean | no | |
|
|
8247
|
+
| sellable | boolean | no | |
|
|
8248
|
+
| sizes | [[ProductSize](#ProductSize)] | no | |
|
|
8249
|
+
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8234
8250
|
| stores | [ProductSizeStores](#ProductSizeStores) | no | |
|
|
8251
|
+
| size_chart | [SizeChart](#SizeChart) | no | |
|
|
8235
8252
|
|
|
8236
8253
|
---
|
|
8237
8254
|
|
|
@@ -8268,8 +8285,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8268
8285
|
|
|
8269
8286
|
| Properties | Type | Nullable | Description |
|
|
8270
8287
|
| ---------- | ---- | -------- | ----------- |
|
|
8271
|
-
| attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
|
|
8272
8288
|
| items | [[ProductDetail](#ProductDetail)] | no | |
|
|
8289
|
+
| attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
|
|
8273
8290
|
|
|
8274
8291
|
---
|
|
8275
8292
|
|
|
@@ -8281,8 +8298,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8281
8298
|
| Properties | Type | Nullable | Description |
|
|
8282
8299
|
| ---------- | ---- | -------- | ----------- |
|
|
8283
8300
|
| subtitle | string | no | |
|
|
8284
|
-
| title | string | no | |
|
|
8285
8301
|
| items | [[ProductDetail](#ProductDetail)] | no | |
|
|
8302
|
+
| title | string | no | |
|
|
8286
8303
|
| attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
|
|
8287
8304
|
|
|
8288
8305
|
---
|
|
@@ -8306,14 +8323,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8306
8323
|
| Properties | Type | Nullable | Description |
|
|
8307
8324
|
| ---------- | ---- | -------- | ----------- |
|
|
8308
8325
|
| color_name | string | no | |
|
|
8309
|
-
| is_available | boolean | no | |
|
|
8310
8326
|
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8311
|
-
|
|
|
8327
|
+
| uid | number | no | |
|
|
8328
|
+
| _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
|
|
8312
8329
|
| color | string | no | |
|
|
8313
8330
|
| medias | [[Media](#Media)] | no | |
|
|
8314
|
-
| slug | string | no | |
|
|
8315
8331
|
| value | string | no | |
|
|
8316
|
-
|
|
|
8332
|
+
| name | string | no | |
|
|
8333
|
+
| is_available | boolean | no | |
|
|
8334
|
+
| slug | string | no | |
|
|
8317
8335
|
|
|
8318
8336
|
---
|
|
8319
8337
|
|
|
@@ -8326,8 +8344,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8326
8344
|
| ---------- | ---- | -------- | ----------- |
|
|
8327
8345
|
| key | string | no | |
|
|
8328
8346
|
| items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
|
|
8329
|
-
| display_type | string | no | |
|
|
8330
8347
|
| header | string | no | |
|
|
8348
|
+
| display_type | string | no | |
|
|
8331
8349
|
|
|
8332
8350
|
---
|
|
8333
8351
|
|
|
@@ -8345,25 +8363,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8345
8363
|
|
|
8346
8364
|
|
|
8347
8365
|
|
|
8348
|
-
#### [CompanyDetail](#CompanyDetail)
|
|
8349
|
-
|
|
8350
|
-
| Properties | Type | Nullable | Description |
|
|
8351
|
-
| ---------- | ---- | -------- | ----------- |
|
|
8352
|
-
| id | number | no | |
|
|
8353
|
-
| name | string | no | |
|
|
8354
|
-
|
|
8355
|
-
---
|
|
8356
|
-
|
|
8357
|
-
|
|
8358
|
-
|
|
8359
|
-
|
|
8360
8366
|
#### [ProductStockPrice](#ProductStockPrice)
|
|
8361
8367
|
|
|
8362
8368
|
| Properties | Type | Nullable | Description |
|
|
8363
8369
|
| ---------- | ---- | -------- | ----------- |
|
|
8364
8370
|
| marked | number | no | |
|
|
8365
|
-
| effective | number | no | |
|
|
8366
8371
|
| currency | string | no | |
|
|
8372
|
+
| effective | number | no | |
|
|
8367
8373
|
|
|
8368
8374
|
---
|
|
8369
8375
|
|
|
@@ -8388,9 +8394,21 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8388
8394
|
|
|
8389
8395
|
| Properties | Type | Nullable | Description |
|
|
8390
8396
|
| ---------- | ---- | -------- | ----------- |
|
|
8391
|
-
| count | number | no | |
|
|
8392
8397
|
| name | string | no | |
|
|
8393
8398
|
| uid | number | no | |
|
|
8399
|
+
| count | number | no | |
|
|
8400
|
+
|
|
8401
|
+
---
|
|
8402
|
+
|
|
8403
|
+
|
|
8404
|
+
|
|
8405
|
+
|
|
8406
|
+
#### [CompanyDetail](#CompanyDetail)
|
|
8407
|
+
|
|
8408
|
+
| Properties | Type | Nullable | Description |
|
|
8409
|
+
| ---------- | ---- | -------- | ----------- |
|
|
8410
|
+
| id | number | no | |
|
|
8411
|
+
| name | string | no | |
|
|
8394
8412
|
|
|
8395
8413
|
---
|
|
8396
8414
|
|
|
@@ -8401,15 +8419,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8401
8419
|
|
|
8402
8420
|
| Properties | Type | Nullable | Description |
|
|
8403
8421
|
| ---------- | ---- | -------- | ----------- |
|
|
8404
|
-
|
|
|
8405
|
-
| company | [CompanyDetail](#CompanyDetail) | no | |
|
|
8406
|
-
| price | [ProductStockPrice](#ProductStockPrice) | no | |
|
|
8422
|
+
| quantity | number | no | |
|
|
8407
8423
|
| size | string | no | |
|
|
8424
|
+
| uid | string | no | |
|
|
8425
|
+
| price | [ProductStockPrice](#ProductStockPrice) | no | |
|
|
8408
8426
|
| identifier | string | no | |
|
|
8409
|
-
| quantity | number | no | |
|
|
8410
8427
|
| store | [StoreDetail](#StoreDetail) | no | |
|
|
8411
8428
|
| seller | [Seller](#Seller) | no | |
|
|
8412
|
-
|
|
|
8429
|
+
| item_id | number | no | |
|
|
8430
|
+
| company | [CompanyDetail](#CompanyDetail) | no | |
|
|
8413
8431
|
|
|
8414
8432
|
---
|
|
8415
8433
|
|
|
@@ -8431,13 +8449,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8431
8449
|
|
|
8432
8450
|
| Properties | Type | Nullable | Description |
|
|
8433
8451
|
| ---------- | ---- | -------- | ----------- |
|
|
8434
|
-
|
|
|
8435
|
-
| has_next | boolean | no | |
|
|
8452
|
+
| has_previous | boolean | no | |
|
|
8436
8453
|
| size | number | no | |
|
|
8437
8454
|
| current | number | no | |
|
|
8438
|
-
| has_previous | boolean | no | |
|
|
8439
|
-
| next_id | string | no | |
|
|
8440
8455
|
| item_total | number | no | |
|
|
8456
|
+
| type | string | yes | |
|
|
8457
|
+
| has_next | boolean | no | |
|
|
8458
|
+
| next_id | string | no | |
|
|
8441
8459
|
|
|
8442
8460
|
---
|
|
8443
8461
|
|
|
@@ -8448,30 +8466,21 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8448
8466
|
|
|
8449
8467
|
| Properties | Type | Nullable | Description |
|
|
8450
8468
|
| ---------- | ---- | -------- | ----------- |
|
|
8451
|
-
| page | [Page](#Page) | yes | |
|
|
8452
8469
|
| items | [[ProductStockStatusItem](#ProductStockStatusItem)] | no | |
|
|
8470
|
+
| page | [Page](#Page) | yes | |
|
|
8453
8471
|
|
|
8454
8472
|
---
|
|
8455
8473
|
|
|
8456
8474
|
|
|
8457
8475
|
|
|
8458
8476
|
|
|
8459
|
-
#### [
|
|
8477
|
+
#### [ProductSortOn](#ProductSortOn)
|
|
8460
8478
|
|
|
8461
8479
|
| Properties | Type | Nullable | Description |
|
|
8462
8480
|
| ---------- | ---- | -------- | ----------- |
|
|
8463
|
-
| min | number | no | |
|
|
8464
|
-
| query_format | string | no | |
|
|
8465
|
-
| display_format | string | no | |
|
|
8466
|
-
| currency_code | string | no | |
|
|
8467
|
-
| currency_symbol | string | no | |
|
|
8468
|
-
| display | string | yes | |
|
|
8469
8481
|
| value | string | no | |
|
|
8470
|
-
|
|
|
8471
|
-
|
|
|
8472
|
-
| max | number | no | |
|
|
8473
|
-
| selected_min | number | no | |
|
|
8474
|
-
| count | number | no | |
|
|
8482
|
+
| name | string | no | |
|
|
8483
|
+
| is_selected | boolean | no | |
|
|
8475
8484
|
|
|
8476
8485
|
---
|
|
8477
8486
|
|
|
@@ -8482,10 +8491,32 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8482
8491
|
|
|
8483
8492
|
| Properties | Type | Nullable | Description |
|
|
8484
8493
|
| ---------- | ---- | -------- | ----------- |
|
|
8485
|
-
| display | string | yes | |
|
|
8486
|
-
| kind | string | no | |
|
|
8487
8494
|
| name | string | yes | |
|
|
8495
|
+
| display | string | yes | |
|
|
8488
8496
|
| logo | string | no | |
|
|
8497
|
+
| kind | string | no | |
|
|
8498
|
+
|
|
8499
|
+
---
|
|
8500
|
+
|
|
8501
|
+
|
|
8502
|
+
|
|
8503
|
+
|
|
8504
|
+
#### [ProductFiltersValue](#ProductFiltersValue)
|
|
8505
|
+
|
|
8506
|
+
| Properties | Type | Nullable | Description |
|
|
8507
|
+
| ---------- | ---- | -------- | ----------- |
|
|
8508
|
+
| is_selected | boolean | yes | |
|
|
8509
|
+
| query_format | string | no | |
|
|
8510
|
+
| count | number | no | |
|
|
8511
|
+
| selected_min | number | no | |
|
|
8512
|
+
| currency_symbol | string | no | |
|
|
8513
|
+
| selected_max | number | no | |
|
|
8514
|
+
| display_format | string | no | |
|
|
8515
|
+
| value | string | no | |
|
|
8516
|
+
| display | string | yes | |
|
|
8517
|
+
| min | number | no | |
|
|
8518
|
+
| max | number | no | |
|
|
8519
|
+
| currency_code | string | no | |
|
|
8489
8520
|
|
|
8490
8521
|
---
|
|
8491
8522
|
|
|
@@ -8496,8 +8527,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8496
8527
|
|
|
8497
8528
|
| Properties | Type | Nullable | Description |
|
|
8498
8529
|
| ---------- | ---- | -------- | ----------- |
|
|
8499
|
-
| values | [[ProductFiltersValue](#ProductFiltersValue)] | yes | |
|
|
8500
8530
|
| key | [ProductFiltersKey](#ProductFiltersKey) | yes | |
|
|
8531
|
+
| values | [[ProductFiltersValue](#ProductFiltersValue)] | yes | |
|
|
8501
8532
|
|
|
8502
8533
|
---
|
|
8503
8534
|
|
|
@@ -8510,9 +8541,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8510
8541
|
| ---------- | ---- | -------- | ----------- |
|
|
8511
8542
|
| total | number | no | |
|
|
8512
8543
|
| items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
|
|
8513
|
-
| key | string | no | |
|
|
8514
|
-
| display_type | string | no | |
|
|
8515
8544
|
| header | string | no | |
|
|
8545
|
+
| display_type | string | no | |
|
|
8546
|
+
| key | string | no | |
|
|
8516
8547
|
|
|
8517
8548
|
---
|
|
8518
8549
|
|
|
@@ -8523,56 +8554,44 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8523
8554
|
|
|
8524
8555
|
| Properties | Type | Nullable | Description |
|
|
8525
8556
|
| ---------- | ---- | -------- | ----------- |
|
|
8526
|
-
| discount | string | no | |
|
|
8527
|
-
| teaser_tag | string | no | |
|
|
8528
8557
|
| attributes | string | no | |
|
|
8529
|
-
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8530
8558
|
| brand | [ProductBrand](#ProductBrand) | no | |
|
|
8559
|
+
| highlights | [string] | no | |
|
|
8560
|
+
| teaser_tag | string | no | |
|
|
8561
|
+
| net_quantity | [NetQuantity](#NetQuantity) | no | |
|
|
8531
8562
|
| similars | [string] | no | |
|
|
8532
|
-
|
|
|
8533
|
-
|
|
|
8563
|
+
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8564
|
+
| category_map | [ProductCategoryMap](#ProductCategoryMap) | no | |
|
|
8534
8565
|
| color | string | no | |
|
|
8535
|
-
|
|
|
8536
|
-
|
|
|
8537
|
-
|
|
|
8538
|
-
| rating | number | no | |
|
|
8539
|
-
| uid | number | no | |
|
|
8540
|
-
| type | string | no | |
|
|
8541
|
-
| sellable | boolean | no | |
|
|
8542
|
-
| tryouts | [string] | no | |
|
|
8566
|
+
| is_dependent | boolean | no | |
|
|
8567
|
+
| slug | string | yes | |
|
|
8568
|
+
| variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
|
|
8543
8569
|
| seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
|
|
8544
8570
|
| has_variant | boolean | no | |
|
|
8571
|
+
| sellable | boolean | no | |
|
|
8572
|
+
| item_code | string | no | |
|
|
8573
|
+
| grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
|
|
8574
|
+
| medias | [[Media](#Media)] | no | |
|
|
8575
|
+
| categories | [[ProductBrand](#ProductBrand)] | no | |
|
|
8576
|
+
| identifiers | [string] | no | |
|
|
8545
8577
|
| tags | [string] | no | |
|
|
8546
|
-
|
|
|
8547
|
-
|
|
|
8548
|
-
| variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
|
|
8549
|
-
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8550
|
-
| highlights | [string] | no | |
|
|
8551
|
-
| product_online_date | string | no | |
|
|
8552
|
-
| sizes | [string] | no | |
|
|
8578
|
+
| rating | number | no | |
|
|
8579
|
+
| type | string | no | |
|
|
8553
8580
|
| rating_count | number | no | |
|
|
8554
|
-
| name | string | no | |
|
|
8555
|
-
| identifiers | [string] | no | |
|
|
8556
8581
|
| description | string | no | |
|
|
8557
|
-
|
|
|
8558
|
-
|
|
|
8559
|
-
|
|
|
8560
|
-
|
|
|
8582
|
+
| discount | string | no | |
|
|
8583
|
+
| short_description | string | no | |
|
|
8584
|
+
| _custom_json | string | no | |
|
|
8585
|
+
| uid | number | no | |
|
|
8586
|
+
| image_nature | string | no | |
|
|
8587
|
+
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8588
|
+
| _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
|
|
8589
|
+
| sizes | [string] | no | |
|
|
8590
|
+
| moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
|
|
8561
8591
|
| item_type | string | no | |
|
|
8562
|
-
| item_code | string | no | |
|
|
8563
|
-
|
|
8564
|
-
---
|
|
8565
|
-
|
|
8566
|
-
|
|
8567
|
-
|
|
8568
|
-
|
|
8569
|
-
#### [ProductSortOn](#ProductSortOn)
|
|
8570
|
-
|
|
8571
|
-
| Properties | Type | Nullable | Description |
|
|
8572
|
-
| ---------- | ---- | -------- | ----------- |
|
|
8573
|
-
| is_selected | boolean | no | |
|
|
8574
8592
|
| name | string | no | |
|
|
8575
|
-
|
|
|
8593
|
+
| tryouts | [string] | no | |
|
|
8594
|
+
| product_online_date | string | no | |
|
|
8576
8595
|
|
|
8577
8596
|
---
|
|
8578
8597
|
|
|
@@ -8583,10 +8602,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8583
8602
|
|
|
8584
8603
|
| Properties | Type | Nullable | Description |
|
|
8585
8604
|
| ---------- | ---- | -------- | ----------- |
|
|
8586
|
-
|
|
|
8605
|
+
| sort_on | [[ProductSortOn](#ProductSortOn)] | no | |
|
|
8587
8606
|
| filters | [[ProductFilters](#ProductFilters)] | no | |
|
|
8588
8607
|
| items | [[ProductListingDetail](#ProductListingDetail)] | no | |
|
|
8589
|
-
|
|
|
8608
|
+
| page | [Page](#Page) | yes | |
|
|
8590
8609
|
|
|
8591
8610
|
---
|
|
8592
8611
|
|
|
@@ -8597,8 +8616,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8597
8616
|
|
|
8598
8617
|
| Properties | Type | Nullable | Description |
|
|
8599
8618
|
| ---------- | ---- | -------- | ----------- |
|
|
8600
|
-
| portrait | [Media](#Media) | no | |
|
|
8601
8619
|
| landscape | [Media](#Media) | no | |
|
|
8620
|
+
| portrait | [Media](#Media) | no | |
|
|
8602
8621
|
|
|
8603
8622
|
---
|
|
8604
8623
|
|
|
@@ -8609,15 +8628,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8609
8628
|
|
|
8610
8629
|
| Properties | Type | Nullable | Description |
|
|
8611
8630
|
| ---------- | ---- | -------- | ----------- |
|
|
8631
|
+
| description | string | no | |
|
|
8612
8632
|
| discount | string | no | |
|
|
8633
|
+
| departments | [string] | no | |
|
|
8613
8634
|
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8635
|
+
| uid | number | no | |
|
|
8636
|
+
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8614
8637
|
| name | string | no | |
|
|
8615
8638
|
| logo | [Media](#Media) | no | |
|
|
8616
|
-
| description | string | no | |
|
|
8617
8639
|
| slug | string | no | |
|
|
8618
|
-
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8619
|
-
| departments | [string] | no | |
|
|
8620
|
-
| uid | number | no | |
|
|
8621
8640
|
|
|
8622
8641
|
---
|
|
8623
8642
|
|
|
@@ -8628,8 +8647,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8628
8647
|
|
|
8629
8648
|
| Properties | Type | Nullable | Description |
|
|
8630
8649
|
| ---------- | ---- | -------- | ----------- |
|
|
8631
|
-
| page | [Page](#Page) | yes | |
|
|
8632
8650
|
| items | [[BrandItem](#BrandItem)] | no | |
|
|
8651
|
+
| page | [Page](#Page) | yes | |
|
|
8633
8652
|
|
|
8634
8653
|
---
|
|
8635
8654
|
|
|
@@ -8640,11 +8659,12 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8640
8659
|
|
|
8641
8660
|
| Properties | Type | Nullable | Description |
|
|
8642
8661
|
| ---------- | ---- | -------- | ----------- |
|
|
8643
|
-
| name | string | no | |
|
|
8644
|
-
| logo | [Media](#Media) | no | |
|
|
8645
8662
|
| description | string | no | |
|
|
8663
|
+
| _custom_json | string | no | |
|
|
8646
8664
|
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8647
8665
|
| uid | number | no | |
|
|
8666
|
+
| name | string | no | |
|
|
8667
|
+
| logo | [Media](#Media) | no | |
|
|
8648
8668
|
|
|
8649
8669
|
---
|
|
8650
8670
|
|
|
@@ -8655,8 +8675,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8655
8675
|
|
|
8656
8676
|
| Properties | Type | Nullable | Description |
|
|
8657
8677
|
| ---------- | ---- | -------- | ----------- |
|
|
8658
|
-
| slug | string | no | |
|
|
8659
8678
|
| uid | number | no | |
|
|
8679
|
+
| slug | string | no | |
|
|
8660
8680
|
|
|
8661
8681
|
---
|
|
8662
8682
|
|
|
@@ -8668,12 +8688,12 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8668
8688
|
| Properties | Type | Nullable | Description |
|
|
8669
8689
|
| ---------- | ---- | -------- | ----------- |
|
|
8670
8690
|
| childs | [string] | no | |
|
|
8691
|
+
| _custom_json | string | no | |
|
|
8692
|
+
| uid | number | no | |
|
|
8693
|
+
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8671
8694
|
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8672
8695
|
| name | string | no | |
|
|
8673
|
-
| _custom_json | string | no | |
|
|
8674
8696
|
| slug | string | no | |
|
|
8675
|
-
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8676
|
-
| uid | number | no | |
|
|
8677
8697
|
|
|
8678
8698
|
---
|
|
8679
8699
|
|
|
@@ -8685,12 +8705,12 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8685
8705
|
| Properties | Type | Nullable | Description |
|
|
8686
8706
|
| ---------- | ---- | -------- | ----------- |
|
|
8687
8707
|
| childs | [[ThirdLevelChild](#ThirdLevelChild)] | no | |
|
|
8708
|
+
| _custom_json | string | no | |
|
|
8709
|
+
| uid | number | no | |
|
|
8710
|
+
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8688
8711
|
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8689
8712
|
| name | string | no | |
|
|
8690
|
-
| _custom_json | string | no | |
|
|
8691
8713
|
| slug | string | no | |
|
|
8692
|
-
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8693
|
-
| uid | number | no | |
|
|
8694
8714
|
|
|
8695
8715
|
---
|
|
8696
8716
|
|
|
@@ -8702,12 +8722,12 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8702
8722
|
| Properties | Type | Nullable | Description |
|
|
8703
8723
|
| ---------- | ---- | -------- | ----------- |
|
|
8704
8724
|
| childs | [[SecondLevelChild](#SecondLevelChild)] | no | |
|
|
8725
|
+
| _custom_json | string | no | |
|
|
8726
|
+
| uid | number | no | |
|
|
8727
|
+
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8705
8728
|
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8706
8729
|
| name | string | no | |
|
|
8707
|
-
| _custom_json | string | no | |
|
|
8708
8730
|
| slug | string | no | |
|
|
8709
|
-
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8710
|
-
| uid | number | no | |
|
|
8711
8731
|
|
|
8712
8732
|
---
|
|
8713
8733
|
|
|
@@ -8718,8 +8738,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8718
8738
|
|
|
8719
8739
|
| Properties | Type | Nullable | Description |
|
|
8720
8740
|
| ---------- | ---- | -------- | ----------- |
|
|
8721
|
-
| portrait | [Media](#Media) | yes | |
|
|
8722
8741
|
| landscape | [Media](#Media) | yes | |
|
|
8742
|
+
| portrait | [Media](#Media) | yes | |
|
|
8723
8743
|
|
|
8724
8744
|
---
|
|
8725
8745
|
|
|
@@ -8732,10 +8752,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8732
8752
|
| ---------- | ---- | -------- | ----------- |
|
|
8733
8753
|
| childs | [[Child](#Child)] | no | |
|
|
8734
8754
|
| action | [ProductListingAction](#ProductListingAction) | yes | |
|
|
8755
|
+
| uid | number | yes | |
|
|
8756
|
+
| banners | [CategoryBanner](#CategoryBanner) | yes | |
|
|
8735
8757
|
| name | string | yes | |
|
|
8736
8758
|
| slug | string | yes | |
|
|
8737
|
-
| banners | [CategoryBanner](#CategoryBanner) | yes | |
|
|
8738
|
-
| uid | number | yes | |
|
|
8739
8759
|
|
|
8740
8760
|
---
|
|
8741
8761
|
|
|
@@ -8746,8 +8766,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8746
8766
|
|
|
8747
8767
|
| Properties | Type | Nullable | Description |
|
|
8748
8768
|
| ---------- | ---- | -------- | ----------- |
|
|
8749
|
-
| department | string | yes | |
|
|
8750
8769
|
| items | [[CategoryItems](#CategoryItems)] | no | |
|
|
8770
|
+
| department | string | yes | |
|
|
8751
8771
|
|
|
8752
8772
|
---
|
|
8753
8773
|
|
|
@@ -8770,10 +8790,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8770
8790
|
|
|
8771
8791
|
| Properties | Type | Nullable | Description |
|
|
8772
8792
|
| ---------- | ---- | -------- | ----------- |
|
|
8773
|
-
|
|
|
8793
|
+
| _custom_json | string | no | |
|
|
8774
8794
|
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8775
|
-
| logo | [Media](#Media) | no | |
|
|
8776
8795
|
| uid | number | no | |
|
|
8796
|
+
| name | string | no | |
|
|
8797
|
+
| logo | [Media](#Media) | no | |
|
|
8777
8798
|
|
|
8778
8799
|
---
|
|
8779
8800
|
|
|
@@ -8784,9 +8805,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8784
8805
|
|
|
8785
8806
|
| Properties | Type | Nullable | Description |
|
|
8786
8807
|
| ---------- | ---- | -------- | ----------- |
|
|
8787
|
-
| page | [Page](#Page) | yes | |
|
|
8788
8808
|
| message | string | no | |
|
|
8789
8809
|
| items | [[ProductListingDetail](#ProductListingDetail)] | no | |
|
|
8810
|
+
| page | [Page](#Page) | yes | |
|
|
8790
8811
|
|
|
8791
8812
|
---
|
|
8792
8813
|
|
|
@@ -8797,11 +8818,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8797
8818
|
|
|
8798
8819
|
| Properties | Type | Nullable | Description |
|
|
8799
8820
|
| ---------- | ---- | -------- | ----------- |
|
|
8821
|
+
| priority_order | number | no | |
|
|
8822
|
+
| uid | number | no | |
|
|
8800
8823
|
| name | string | no | |
|
|
8801
8824
|
| logo | [Media](#Media) | no | |
|
|
8802
8825
|
| slug | string | no | |
|
|
8803
|
-
| priority_order | number | no | |
|
|
8804
|
-
| uid | number | no | |
|
|
8805
8826
|
|
|
8806
8827
|
---
|
|
8807
8828
|
|
|
@@ -8823,11 +8844,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8823
8844
|
|
|
8824
8845
|
| Properties | Type | Nullable | Description |
|
|
8825
8846
|
| ---------- | ---- | -------- | ----------- |
|
|
8826
|
-
| type | string | no | |
|
|
8827
8847
|
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8828
|
-
| logo | [Media](#Media) | no | |
|
|
8829
|
-
| display | string | no | |
|
|
8830
8848
|
| _custom_json | string | no | |
|
|
8849
|
+
| type | string | no | |
|
|
8850
|
+
| display | string | no | |
|
|
8851
|
+
| logo | [Media](#Media) | no | |
|
|
8831
8852
|
|
|
8832
8853
|
---
|
|
8833
8854
|
|
|
@@ -8849,9 +8870,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8849
8870
|
|
|
8850
8871
|
| Properties | Type | Nullable | Description |
|
|
8851
8872
|
| ---------- | ---- | -------- | ----------- |
|
|
8852
|
-
| display | string | no | |
|
|
8853
|
-
| is_selected | boolean | no | |
|
|
8854
8873
|
| name | string | no | |
|
|
8874
|
+
| is_selected | boolean | no | |
|
|
8875
|
+
| display | string | no | |
|
|
8855
8876
|
|
|
8856
8877
|
---
|
|
8857
8878
|
|
|
@@ -8862,9 +8883,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8862
8883
|
|
|
8863
8884
|
| Properties | Type | Nullable | Description |
|
|
8864
8885
|
| ---------- | ---- | -------- | ----------- |
|
|
8865
|
-
| display | string | no | |
|
|
8866
|
-
| is_selected | boolean | no | |
|
|
8867
8886
|
| name | string | no | |
|
|
8887
|
+
| is_selected | boolean | no | |
|
|
8888
|
+
| display | string | no | |
|
|
8868
8889
|
|
|
8869
8890
|
---
|
|
8870
8891
|
|
|
@@ -8887,9 +8908,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8887
8908
|
|
|
8888
8909
|
| Properties | Type | Nullable | Description |
|
|
8889
8910
|
| ---------- | ---- | -------- | ----------- |
|
|
8890
|
-
| attribute | string | yes | |
|
|
8891
|
-
| op | string | yes | |
|
|
8892
8911
|
| value | [any] | yes | |
|
|
8912
|
+
| op | string | yes | |
|
|
8913
|
+
| attribute | string | yes | |
|
|
8893
8914
|
|
|
8894
8915
|
---
|
|
8895
8916
|
|
|
@@ -8900,27 +8921,28 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8900
8921
|
|
|
8901
8922
|
| Properties | Type | Nullable | Description |
|
|
8902
8923
|
| ---------- | ---- | -------- | ----------- |
|
|
8903
|
-
| allow_facets | boolean | no | |
|
|
8904
|
-
| sort_on | string | no | |
|
|
8905
|
-
| uid | string | no | |
|
|
8906
|
-
| type | string | no | |
|
|
8907
|
-
| priority | number | no | |
|
|
8908
|
-
| logo | [Media](#Media) | no | |
|
|
8909
|
-
| allow_sort | boolean | no | |
|
|
8910
|
-
| query | [[CollectionQuery](#CollectionQuery)] | no | |
|
|
8911
8924
|
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8912
|
-
| cron | string | no | |
|
|
8913
|
-
| tag | [string] | no | |
|
|
8914
8925
|
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8915
|
-
|
|
|
8916
|
-
|
|
|
8926
|
+
| slug | string | no | |
|
|
8927
|
+
| sort_on | string | no | |
|
|
8928
|
+
| visible_facets_keys | [string] | no | |
|
|
8929
|
+
| cron | string | no | |
|
|
8930
|
+
| query | [[CollectionQuery](#CollectionQuery)] | no | |
|
|
8917
8931
|
| meta | string | no | |
|
|
8918
8932
|
| is_active | boolean | no | |
|
|
8933
|
+
| app_id | string | no | |
|
|
8934
|
+
| type | string | no | |
|
|
8935
|
+
| allow_facets | boolean | no | |
|
|
8919
8936
|
| _schedule | string | no | |
|
|
8920
|
-
|
|
|
8937
|
+
| tag | [string] | no | |
|
|
8938
|
+
| logo | [Media](#Media) | no | |
|
|
8921
8939
|
| description | string | no | |
|
|
8922
|
-
|
|
|
8923
|
-
|
|
|
8940
|
+
| allow_sort | boolean | no | |
|
|
8941
|
+
| priority | number | no | |
|
|
8942
|
+
| _custom_json | string | no | |
|
|
8943
|
+
| uid | string | no | |
|
|
8944
|
+
| badge | string | no | |
|
|
8945
|
+
| name | string | no | |
|
|
8924
8946
|
|
|
8925
8947
|
---
|
|
8926
8948
|
|
|
@@ -8931,9 +8953,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8931
8953
|
|
|
8932
8954
|
| Properties | Type | Nullable | Description |
|
|
8933
8955
|
| ---------- | ---- | -------- | ----------- |
|
|
8934
|
-
| page | [Page](#Page) | yes | |
|
|
8935
8956
|
| filters | [CollectionListingFilter](#CollectionListingFilter) | no | |
|
|
8936
8957
|
| items | [[GetCollectionDetailNest](#GetCollectionDetailNest)] | no | |
|
|
8958
|
+
| page | [Page](#Page) | yes | |
|
|
8937
8959
|
|
|
8938
8960
|
---
|
|
8939
8961
|
|
|
@@ -8944,25 +8966,26 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8944
8966
|
|
|
8945
8967
|
| Properties | Type | Nullable | Description |
|
|
8946
8968
|
| ---------- | ---- | -------- | ----------- |
|
|
8947
|
-
|
|
|
8969
|
+
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8970
|
+
| slug | string | no | |
|
|
8948
8971
|
| sort_on | string | no | |
|
|
8949
|
-
|
|
|
8950
|
-
| priority | number | no | |
|
|
8951
|
-
| logo | [Media](#Media) | no | |
|
|
8952
|
-
| allow_sort | boolean | no | |
|
|
8953
|
-
| query | [[CollectionQuery](#CollectionQuery)] | no | |
|
|
8972
|
+
| visible_facets_keys | [string] | no | |
|
|
8954
8973
|
| cron | string | no | |
|
|
8955
|
-
|
|
|
8956
|
-
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8957
|
-
| app_id | string | no | |
|
|
8958
|
-
| badge | string | no | |
|
|
8974
|
+
| query | [[CollectionQuery](#CollectionQuery)] | no | |
|
|
8959
8975
|
| meta | string | no | |
|
|
8960
8976
|
| is_active | boolean | no | |
|
|
8977
|
+
| app_id | string | no | |
|
|
8978
|
+
| type | string | no | |
|
|
8979
|
+
| allow_facets | boolean | no | |
|
|
8961
8980
|
| _schedule | string | no | |
|
|
8962
|
-
|
|
|
8981
|
+
| tag | [string] | no | |
|
|
8982
|
+
| logo | [Media](#Media) | no | |
|
|
8963
8983
|
| description | string | no | |
|
|
8964
|
-
|
|
|
8965
|
-
|
|
|
8984
|
+
| allow_sort | boolean | no | |
|
|
8985
|
+
| priority | number | no | |
|
|
8986
|
+
| _custom_json | string | no | |
|
|
8987
|
+
| badge | string | no | |
|
|
8988
|
+
| name | string | no | |
|
|
8966
8989
|
|
|
8967
8990
|
---
|
|
8968
8991
|
|
|
@@ -8973,8 +8996,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
8973
8996
|
|
|
8974
8997
|
| Properties | Type | Nullable | Description |
|
|
8975
8998
|
| ---------- | ---- | -------- | ----------- |
|
|
8976
|
-
| page | [Page](#Page) | yes | |
|
|
8977
8999
|
| items | [[ProductListingDetail](#ProductListingDetail)] | yes | |
|
|
9000
|
+
| page | [Page](#Page) | yes | |
|
|
8978
9001
|
|
|
8979
9002
|
---
|
|
8980
9003
|
|
|
@@ -9008,8 +9031,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9008
9031
|
|
|
9009
9032
|
| Properties | Type | Nullable | Description |
|
|
9010
9033
|
| ---------- | ---- | -------- | ----------- |
|
|
9011
|
-
| brands | [number] | no | |
|
|
9012
9034
|
| collections | [number] | no | |
|
|
9035
|
+
| brands | [number] | no | |
|
|
9013
9036
|
| products | [number] | no | |
|
|
9014
9037
|
|
|
9015
9038
|
---
|
|
@@ -9045,15 +9068,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9045
9068
|
| Properties | Type | Nullable | Description |
|
|
9046
9069
|
| ---------- | ---- | -------- | ----------- |
|
|
9047
9070
|
| store_code | string | no | |
|
|
9048
|
-
| state | string | no | |
|
|
9049
9071
|
| address | string | no | |
|
|
9072
|
+
| state | string | no | |
|
|
9073
|
+
| uid | number | no | |
|
|
9074
|
+
| city | string | no | |
|
|
9050
9075
|
| name | string | no | |
|
|
9051
9076
|
| store_email | string | no | |
|
|
9052
|
-
| lat_long | [LatLong](#LatLong) | no | |
|
|
9053
|
-
| city | string | no | |
|
|
9054
9077
|
| country | string | no | |
|
|
9055
9078
|
| pincode | number | no | |
|
|
9056
|
-
|
|
|
9079
|
+
| lat_long | [LatLong](#LatLong) | no | |
|
|
9057
9080
|
|
|
9058
9081
|
---
|
|
9059
9082
|
|
|
@@ -9064,8 +9087,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9064
9087
|
|
|
9065
9088
|
| Properties | Type | Nullable | Description |
|
|
9066
9089
|
| ---------- | ---- | -------- | ----------- |
|
|
9067
|
-
| page | [Page](#Page) | yes | |
|
|
9068
9090
|
| items | [[Store](#Store)] | yes | |
|
|
9091
|
+
| page | [Page](#Page) | yes | |
|
|
9069
9092
|
|
|
9070
9093
|
---
|
|
9071
9094
|
|
|
@@ -9076,11 +9099,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9076
9099
|
|
|
9077
9100
|
| Properties | Type | Nullable | Description |
|
|
9078
9101
|
| ---------- | ---- | -------- | ----------- |
|
|
9102
|
+
| priority_order | number | no | |
|
|
9103
|
+
| uid | number | no | |
|
|
9079
9104
|
| name | string | no | |
|
|
9080
9105
|
| logo | string | no | |
|
|
9081
9106
|
| slug | string | no | |
|
|
9082
|
-
| priority_order | number | no | |
|
|
9083
|
-
| uid | number | no | |
|
|
9084
9107
|
|
|
9085
9108
|
---
|
|
9086
9109
|
|
|
@@ -9091,21 +9114,27 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9091
9114
|
|
|
9092
9115
|
| Properties | Type | Nullable | Description |
|
|
9093
9116
|
| ---------- | ---- | -------- | ----------- |
|
|
9094
|
-
| number | string | yes | |
|
|
9095
9117
|
| country_code | number | yes | |
|
|
9118
|
+
| number | string | yes | |
|
|
9096
9119
|
|
|
9097
9120
|
---
|
|
9098
9121
|
|
|
9099
9122
|
|
|
9100
9123
|
|
|
9101
9124
|
|
|
9102
|
-
#### [
|
|
9125
|
+
#### [StoreAddressSerializer](#StoreAddressSerializer)
|
|
9103
9126
|
|
|
9104
9127
|
| Properties | Type | Nullable | Description |
|
|
9105
9128
|
| ---------- | ---- | -------- | ----------- |
|
|
9106
|
-
|
|
|
9107
|
-
|
|
|
9108
|
-
|
|
|
9129
|
+
| address1 | string | no | |
|
|
9130
|
+
| pincode | number | no | |
|
|
9131
|
+
| longitude | number | no | |
|
|
9132
|
+
| state | string | no | |
|
|
9133
|
+
| city | string | no | |
|
|
9134
|
+
| country | string | no | |
|
|
9135
|
+
| landmark | string | no | |
|
|
9136
|
+
| latitude | number | no | |
|
|
9137
|
+
| address2 | string | no | |
|
|
9109
9138
|
|
|
9110
9139
|
---
|
|
9111
9140
|
|
|
@@ -9116,29 +9145,23 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9116
9145
|
|
|
9117
9146
|
| Properties | Type | Nullable | Description |
|
|
9118
9147
|
| ---------- | ---- | -------- | ----------- |
|
|
9119
|
-
| business_type | string | no | |
|
|
9120
|
-
| company_type | string | no | |
|
|
9121
9148
|
| name | string | no | |
|
|
9122
9149
|
| uid | number | no | |
|
|
9150
|
+
| company_type | string | no | |
|
|
9151
|
+
| business_type | string | no | |
|
|
9123
9152
|
|
|
9124
9153
|
---
|
|
9125
9154
|
|
|
9126
9155
|
|
|
9127
9156
|
|
|
9128
9157
|
|
|
9129
|
-
#### [
|
|
9158
|
+
#### [StoreManagerSerializer](#StoreManagerSerializer)
|
|
9130
9159
|
|
|
9131
9160
|
| Properties | Type | Nullable | Description |
|
|
9132
9161
|
| ---------- | ---- | -------- | ----------- |
|
|
9133
|
-
|
|
|
9134
|
-
|
|
|
9135
|
-
|
|
|
9136
|
-
| latitude | number | no | |
|
|
9137
|
-
| landmark | string | no | |
|
|
9138
|
-
| city | string | no | |
|
|
9139
|
-
| country | string | no | |
|
|
9140
|
-
| pincode | number | no | |
|
|
9141
|
-
| address2 | string | no | |
|
|
9162
|
+
| name | string | no | |
|
|
9163
|
+
| email | string | no | |
|
|
9164
|
+
| mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | no | |
|
|
9142
9165
|
|
|
9143
9166
|
---
|
|
9144
9167
|
|
|
@@ -9149,13 +9172,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9149
9172
|
|
|
9150
9173
|
| Properties | Type | Nullable | Description |
|
|
9151
9174
|
| ---------- | ---- | -------- | ----------- |
|
|
9152
|
-
| manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
|
|
9153
|
-
| company | [CompanyStore](#CompanyStore) | no | |
|
|
9154
|
-
| address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
|
|
9155
|
-
| name | string | no | |
|
|
9156
|
-
| departments | [[StoreDepartments](#StoreDepartments)] | no | |
|
|
9157
9175
|
| contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
|
|
9176
|
+
| departments | [[StoreDepartments](#StoreDepartments)] | no | |
|
|
9158
9177
|
| uid | number | no | |
|
|
9178
|
+
| name | string | no | |
|
|
9179
|
+
| address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
|
|
9180
|
+
| company | [CompanyStore](#CompanyStore) | no | |
|
|
9181
|
+
| manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
|
|
9159
9182
|
|
|
9160
9183
|
---
|
|
9161
9184
|
|
|
@@ -9166,9 +9189,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9166
9189
|
|
|
9167
9190
|
| Properties | Type | Nullable | Description |
|
|
9168
9191
|
| ---------- | ---- | -------- | ----------- |
|
|
9169
|
-
| page | [Page](#Page) | no | |
|
|
9170
9192
|
| filters | [[StoreDepartments](#StoreDepartments)] | no | |
|
|
9171
9193
|
| items | [[AppStore](#AppStore)] | no | |
|
|
9194
|
+
| page | [Page](#Page) | no | |
|
|
9172
9195
|
|
|
9173
9196
|
---
|
|
9174
9197
|
|
|
@@ -9191,10 +9214,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9191
9214
|
|
|
9192
9215
|
| Properties | Type | Nullable | Description |
|
|
9193
9216
|
| ---------- | ---- | -------- | ----------- |
|
|
9194
|
-
| open | boolean | no | |
|
|
9195
|
-
| closing | [Time](#Time) | no | |
|
|
9196
9217
|
| weekday | string | no | |
|
|
9218
|
+
| open | boolean | no | |
|
|
9197
9219
|
| opening | [Time](#Time) | no | |
|
|
9220
|
+
| closing | [Time](#Time) | no | |
|
|
9198
9221
|
|
|
9199
9222
|
---
|
|
9200
9223
|
|
|
@@ -9205,15 +9228,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9205
9228
|
|
|
9206
9229
|
| Properties | Type | Nullable | Description |
|
|
9207
9230
|
| ---------- | ---- | -------- | ----------- |
|
|
9208
|
-
| manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
|
|
9209
|
-
| company | [CompanyStore](#CompanyStore) | no | |
|
|
9210
|
-
| address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
|
|
9211
|
-
| name | string | no | |
|
|
9212
|
-
| timing | [[StoreTiming](#StoreTiming)] | no | |
|
|
9213
|
-
| _custom_json | string | no | |
|
|
9214
|
-
| departments | [[StoreDepartments](#StoreDepartments)] | no | |
|
|
9215
9231
|
| contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
|
|
9232
|
+
| departments | [[StoreDepartments](#StoreDepartments)] | no | |
|
|
9233
|
+
| _custom_json | string | no | |
|
|
9216
9234
|
| uid | number | no | |
|
|
9235
|
+
| timing | [[StoreTiming](#StoreTiming)] | no | |
|
|
9236
|
+
| name | string | no | |
|
|
9237
|
+
| address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
|
|
9238
|
+
| company | [CompanyStore](#CompanyStore) | no | |
|
|
9239
|
+
| manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
|
|
9217
9240
|
|
|
9218
9241
|
---
|
|
9219
9242
|
|
|
@@ -9224,70 +9247,70 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9224
9247
|
|
|
9225
9248
|
| Properties | Type | Nullable | Description |
|
|
9226
9249
|
| ---------- | ---- | -------- | ----------- |
|
|
9250
|
+
| super_user | boolean | no | |
|
|
9251
|
+
| user_id | string | yes | |
|
|
9227
9252
|
| contact | string | no | |
|
|
9228
9253
|
| username | string | yes | |
|
|
9229
|
-
| user_id | string | yes | |
|
|
9230
|
-
| super_user | boolean | no | |
|
|
9231
9254
|
|
|
9232
9255
|
---
|
|
9233
9256
|
|
|
9234
9257
|
|
|
9235
9258
|
|
|
9236
9259
|
|
|
9237
|
-
#### [
|
|
9260
|
+
#### [ProductDetails](#ProductDetails)
|
|
9238
9261
|
|
|
9239
9262
|
| Properties | Type | Nullable | Description |
|
|
9240
9263
|
| ---------- | ---- | -------- | ----------- |
|
|
9241
|
-
|
|
|
9242
|
-
|
|
|
9243
|
-
|
|
|
9244
|
-
|
|
|
9264
|
+
| attributes | string | no | |
|
|
9265
|
+
| is_set | boolean | no | |
|
|
9266
|
+
| highlights | [any] | no | |
|
|
9267
|
+
| identifier | string | no | |
|
|
9268
|
+
| slug | any | no | |
|
|
9269
|
+
| images | [any] | no | |
|
|
9270
|
+
| hsn_code | number | no | |
|
|
9271
|
+
| has_variant | boolean | no | |
|
|
9272
|
+
| brand_uid | number | no | |
|
|
9273
|
+
| grouped_attributes | string | no | |
|
|
9274
|
+
| item_code | any | no | |
|
|
9275
|
+
| template_tag | any | no | |
|
|
9276
|
+
| rating | number | no | |
|
|
9277
|
+
| country_of_origin | any | no | |
|
|
9278
|
+
| rating_count | number | no | |
|
|
9279
|
+
| media | [string] | no | |
|
|
9280
|
+
| description | any | no | |
|
|
9281
|
+
| out_of_stock | boolean | no | |
|
|
9282
|
+
| short_description | any | no | |
|
|
9283
|
+
| image_nature | any | no | |
|
|
9284
|
+
| name | any | no | |
|
|
9245
9285
|
|
|
9246
9286
|
---
|
|
9247
9287
|
|
|
9248
9288
|
|
|
9249
9289
|
|
|
9250
9290
|
|
|
9251
|
-
#### [
|
|
9291
|
+
#### [Size](#Size)
|
|
9252
9292
|
|
|
9253
9293
|
| Properties | Type | Nullable | Description |
|
|
9254
9294
|
| ---------- | ---- | -------- | ----------- |
|
|
9255
|
-
|
|
|
9256
|
-
|
|
|
9257
|
-
|
|
|
9258
|
-
|
|
|
9259
|
-
| currency | any | no | |
|
|
9295
|
+
| value | any | no | |
|
|
9296
|
+
| display | any | no | |
|
|
9297
|
+
| is_available | boolean | no | |
|
|
9298
|
+
| quantity | number | no | |
|
|
9260
9299
|
|
|
9261
9300
|
---
|
|
9262
9301
|
|
|
9263
9302
|
|
|
9264
9303
|
|
|
9265
9304
|
|
|
9266
|
-
#### [
|
|
9305
|
+
#### [ProductGroupPrice](#ProductGroupPrice)
|
|
9267
9306
|
|
|
9268
9307
|
| Properties | Type | Nullable | Description |
|
|
9269
9308
|
| ---------- | ---- | -------- | ----------- |
|
|
9270
|
-
|
|
|
9271
|
-
|
|
|
9272
|
-
|
|
|
9273
|
-
|
|
|
9274
|
-
|
|
|
9275
|
-
| grouped_attributes | string | no | |
|
|
9276
|
-
| image_nature | any | no | |
|
|
9277
|
-
| rating | number | no | |
|
|
9278
|
-
| has_variant | boolean | no | |
|
|
9279
|
-
| media | [string] | no | |
|
|
9280
|
-
| brand_uid | number | no | |
|
|
9281
|
-
| hsn_code | number | no | |
|
|
9282
|
-
| highlights | [any] | no | |
|
|
9283
|
-
| country_of_origin | any | no | |
|
|
9284
|
-
| rating_count | number | no | |
|
|
9285
|
-
| name | any | no | |
|
|
9286
|
-
| identifier | string | no | |
|
|
9287
|
-
| description | any | no | |
|
|
9288
|
-
| slug | any | no | |
|
|
9289
|
-
| out_of_stock | boolean | no | |
|
|
9290
|
-
| item_code | any | no | |
|
|
9309
|
+
| min_marked | number | no | |
|
|
9310
|
+
| min_effective | number | no | |
|
|
9311
|
+
| max_marked | number | no | |
|
|
9312
|
+
| currency | any | no | |
|
|
9313
|
+
| max_effective | number | no | |
|
|
9291
9314
|
|
|
9292
9315
|
---
|
|
9293
9316
|
|
|
@@ -9298,15 +9321,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9298
9321
|
|
|
9299
9322
|
| Properties | Type | Nullable | Description |
|
|
9300
9323
|
| ---------- | ---- | -------- | ----------- |
|
|
9301
|
-
| sizes | [[Size](#Size)] | no | |
|
|
9302
|
-
| product_uid | number | yes | |
|
|
9303
|
-
| auto_add_to_cart | boolean | no | |
|
|
9304
9324
|
| max_quantity | number | yes | |
|
|
9325
|
+
| product_details | [ProductDetails](#ProductDetails) | no | |
|
|
9326
|
+
| sizes | [[Size](#Size)] | no | |
|
|
9305
9327
|
| min_quantity | number | no | |
|
|
9306
|
-
| allow_remove | boolean | no | |
|
|
9307
9328
|
| price | [ProductGroupPrice](#ProductGroupPrice) | no | |
|
|
9329
|
+
| allow_remove | boolean | no | |
|
|
9330
|
+
| product_uid | number | yes | |
|
|
9308
9331
|
| auto_select | boolean | no | |
|
|
9309
|
-
|
|
|
9332
|
+
| auto_add_to_cart | boolean | no | |
|
|
9310
9333
|
|
|
9311
9334
|
---
|
|
9312
9335
|
|
|
@@ -9317,23 +9340,23 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9317
9340
|
|
|
9318
9341
|
| Properties | Type | Nullable | Description |
|
|
9319
9342
|
| ---------- | ---- | -------- | ----------- |
|
|
9320
|
-
| created_by | [UserDetail](#UserDetail) | no | |
|
|
9321
9343
|
| choice | any | no | |
|
|
9344
|
+
| meta | string | no | |
|
|
9345
|
+
| verified_by | [UserDetail](#UserDetail) | no | |
|
|
9322
9346
|
| is_active | boolean | no | |
|
|
9323
9347
|
| same_store_assignment | boolean | no | |
|
|
9324
|
-
|
|
|
9325
|
-
|
|
|
9348
|
+
| products | [[ProductInGroup](#ProductInGroup)] | yes | |
|
|
9349
|
+
| created_on | string | yes | |
|
|
9350
|
+
| _id | any | no | |
|
|
9326
9351
|
| modified_by | [UserDetail](#UserDetail) | no | |
|
|
9352
|
+
| created_by | [UserDetail](#UserDetail) | no | |
|
|
9353
|
+
| company_id | number | no | |
|
|
9354
|
+
| modified_on | string | yes | |
|
|
9327
9355
|
| name | any | yes | |
|
|
9356
|
+
| page_visibility | [any] | no | |
|
|
9328
9357
|
| logo | string | no | |
|
|
9329
|
-
| company_id | number | no | |
|
|
9330
|
-
| created_on | string | yes | |
|
|
9331
|
-
| _id | any | no | |
|
|
9332
9358
|
| slug | any | no | |
|
|
9333
|
-
|
|
|
9334
|
-
| modified_on | string | yes | |
|
|
9335
|
-
| meta | string | no | |
|
|
9336
|
-
| products | [[ProductInGroup](#ProductInGroup)] | yes | |
|
|
9359
|
+
| verified_on | string | no | |
|
|
9337
9360
|
|
|
9338
9361
|
---
|
|
9339
9362
|
|
|
@@ -9351,221 +9374,221 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
|
|
|
9351
9374
|
|
|
9352
9375
|
|
|
9353
9376
|
|
|
9354
|
-
#### [
|
|
9377
|
+
#### [StrategyWiseListingSchemaV3](#StrategyWiseListingSchemaV3)
|
|
9355
9378
|
|
|
9356
9379
|
| Properties | Type | Nullable | Description |
|
|
9357
9380
|
| ---------- | ---- | -------- | ----------- |
|
|
9358
|
-
|
|
|
9359
|
-
|
|
|
9360
|
-
|
|
|
9381
|
+
| tat | number | no | |
|
|
9382
|
+
| distance | number | no | |
|
|
9383
|
+
| pincode | number | no | |
|
|
9384
|
+
| quantity | number | no | |
|
|
9361
9385
|
|
|
9362
9386
|
---
|
|
9363
9387
|
|
|
9364
9388
|
|
|
9365
9389
|
|
|
9366
9390
|
|
|
9367
|
-
#### [
|
|
9391
|
+
#### [ArticleAssignmentV3](#ArticleAssignmentV3)
|
|
9368
9392
|
|
|
9369
9393
|
| Properties | Type | Nullable | Description |
|
|
9370
9394
|
| ---------- | ---- | -------- | ----------- |
|
|
9371
|
-
|
|
|
9372
|
-
|
|
|
9373
|
-
| value | string | no | |
|
|
9395
|
+
| strategy | string | no | |
|
|
9396
|
+
| level | string | no | |
|
|
9374
9397
|
|
|
9375
9398
|
---
|
|
9376
9399
|
|
|
9377
9400
|
|
|
9378
9401
|
|
|
9379
9402
|
|
|
9380
|
-
#### [
|
|
9403
|
+
#### [ReturnConfigSchemaV3](#ReturnConfigSchemaV3)
|
|
9381
9404
|
|
|
9382
9405
|
| Properties | Type | Nullable | Description |
|
|
9383
9406
|
| ---------- | ---- | -------- | ----------- |
|
|
9384
|
-
|
|
|
9385
|
-
|
|
|
9407
|
+
| time | number | no | |
|
|
9408
|
+
| unit | string | no | |
|
|
9409
|
+
| returnable | boolean | no | |
|
|
9386
9410
|
|
|
9387
9411
|
---
|
|
9388
9412
|
|
|
9389
9413
|
|
|
9390
9414
|
|
|
9391
9415
|
|
|
9392
|
-
#### [
|
|
9416
|
+
#### [DetailsSchemaV3](#DetailsSchemaV3)
|
|
9393
9417
|
|
|
9394
9418
|
| Properties | Type | Nullable | Description |
|
|
9395
9419
|
| ---------- | ---- | -------- | ----------- |
|
|
9396
|
-
|
|
|
9397
|
-
|
|
|
9420
|
+
| type | string | no | |
|
|
9421
|
+
| key | string | no | |
|
|
9422
|
+
| value | string | no | |
|
|
9398
9423
|
|
|
9399
9424
|
---
|
|
9400
9425
|
|
|
9401
9426
|
|
|
9402
9427
|
|
|
9403
9428
|
|
|
9404
|
-
#### [
|
|
9429
|
+
#### [SellerGroupAttributes](#SellerGroupAttributes)
|
|
9405
9430
|
|
|
9406
9431
|
| Properties | Type | Nullable | Description |
|
|
9407
9432
|
| ---------- | ---- | -------- | ----------- |
|
|
9408
|
-
|
|
|
9409
|
-
|
|
|
9410
|
-
| currency_code | string | no | |
|
|
9411
|
-
| currency_symbol | string | no | |
|
|
9433
|
+
| details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
|
|
9434
|
+
| title | string | no | |
|
|
9412
9435
|
|
|
9413
9436
|
---
|
|
9414
9437
|
|
|
9415
9438
|
|
|
9416
9439
|
|
|
9417
9440
|
|
|
9418
|
-
#### [
|
|
9441
|
+
#### [StoreV3](#StoreV3)
|
|
9419
9442
|
|
|
9420
9443
|
| Properties | Type | Nullable | Description |
|
|
9421
9444
|
| ---------- | ---- | -------- | ----------- |
|
|
9422
|
-
|
|
|
9423
|
-
|
|
|
9424
|
-
|
|
|
9445
|
+
| name | string | no | |
|
|
9446
|
+
| uid | number | no | |
|
|
9447
|
+
| count | number | no | |
|
|
9425
9448
|
|
|
9426
9449
|
---
|
|
9427
9450
|
|
|
9428
9451
|
|
|
9429
9452
|
|
|
9430
9453
|
|
|
9431
|
-
#### [
|
|
9454
|
+
#### [ProductStockUnitPriceV3](#ProductStockUnitPriceV3)
|
|
9432
9455
|
|
|
9433
9456
|
| Properties | Type | Nullable | Description |
|
|
9434
9457
|
| ---------- | ---- | -------- | ----------- |
|
|
9435
|
-
|
|
|
9436
|
-
|
|
|
9437
|
-
|
|
|
9458
|
+
| unit | string | no | |
|
|
9459
|
+
| currency_code | string | no | |
|
|
9460
|
+
| currency_symbol | string | no | |
|
|
9461
|
+
| price | number | no | |
|
|
9438
9462
|
|
|
9439
9463
|
---
|
|
9440
9464
|
|
|
9441
9465
|
|
|
9442
9466
|
|
|
9443
9467
|
|
|
9444
|
-
#### [
|
|
9468
|
+
#### [ProductSetDistributionSizeV3](#ProductSetDistributionSizeV3)
|
|
9445
9469
|
|
|
9446
9470
|
| Properties | Type | Nullable | Description |
|
|
9447
9471
|
| ---------- | ---- | -------- | ----------- |
|
|
9448
|
-
|
|
|
9449
|
-
|
|
|
9450
|
-
| uid | number | no | |
|
|
9472
|
+
| size | string | no | |
|
|
9473
|
+
| pieces | number | no | |
|
|
9451
9474
|
|
|
9452
9475
|
---
|
|
9453
9476
|
|
|
9454
9477
|
|
|
9455
9478
|
|
|
9456
9479
|
|
|
9457
|
-
#### [
|
|
9480
|
+
#### [ProductSetDistributionV3](#ProductSetDistributionV3)
|
|
9458
9481
|
|
|
9459
9482
|
| Properties | Type | Nullable | Description |
|
|
9460
9483
|
| ---------- | ---- | -------- | ----------- |
|
|
9461
|
-
|
|
|
9462
|
-
| pieces | number | no | |
|
|
9484
|
+
| sizes | [[ProductSetDistributionSizeV3](#ProductSetDistributionSizeV3)] | no | |
|
|
9463
9485
|
|
|
9464
9486
|
---
|
|
9465
9487
|
|
|
9466
9488
|
|
|
9467
9489
|
|
|
9468
9490
|
|
|
9469
|
-
#### [
|
|
9491
|
+
#### [ProductSetV3](#ProductSetV3)
|
|
9470
9492
|
|
|
9471
9493
|
| Properties | Type | Nullable | Description |
|
|
9472
9494
|
| ---------- | ---- | -------- | ----------- |
|
|
9473
|
-
|
|
|
9495
|
+
| quantity | number | no | |
|
|
9496
|
+
| size_distribution | [ProductSetDistributionV3](#ProductSetDistributionV3) | no | |
|
|
9474
9497
|
|
|
9475
9498
|
---
|
|
9476
9499
|
|
|
9477
9500
|
|
|
9478
9501
|
|
|
9479
9502
|
|
|
9480
|
-
#### [
|
|
9503
|
+
#### [ProductStockPriceV3](#ProductStockPriceV3)
|
|
9481
9504
|
|
|
9482
9505
|
| Properties | Type | Nullable | Description |
|
|
9483
9506
|
| ---------- | ---- | -------- | ----------- |
|
|
9484
|
-
|
|
|
9485
|
-
|
|
|
9507
|
+
| marked | number | no | |
|
|
9508
|
+
| currency | string | no | |
|
|
9509
|
+
| effective | number | no | |
|
|
9486
9510
|
|
|
9487
9511
|
---
|
|
9488
9512
|
|
|
9489
9513
|
|
|
9490
9514
|
|
|
9491
9515
|
|
|
9492
|
-
#### [
|
|
9516
|
+
#### [SellerV3](#SellerV3)
|
|
9493
9517
|
|
|
9494
9518
|
| Properties | Type | Nullable | Description |
|
|
9495
9519
|
| ---------- | ---- | -------- | ----------- |
|
|
9496
|
-
|
|
|
9497
|
-
|
|
|
9520
|
+
| name | string | no | |
|
|
9521
|
+
| uid | number | no | |
|
|
9522
|
+
| count | number | no | |
|
|
9498
9523
|
|
|
9499
9524
|
---
|
|
9500
9525
|
|
|
9501
9526
|
|
|
9502
9527
|
|
|
9503
9528
|
|
|
9504
|
-
#### [
|
|
9529
|
+
#### [MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)
|
|
9505
9530
|
|
|
9506
9531
|
| Properties | Type | Nullable | Description |
|
|
9507
9532
|
| ---------- | ---- | -------- | ----------- |
|
|
9508
|
-
|
|
|
9509
|
-
|
|
|
9510
|
-
| quantity | number | no | |
|
|
9511
|
-
| distance | number | no | |
|
|
9533
|
+
| details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
|
|
9534
|
+
| title | string | no | |
|
|
9512
9535
|
|
|
9513
9536
|
---
|
|
9514
9537
|
|
|
9515
9538
|
|
|
9516
9539
|
|
|
9517
9540
|
|
|
9518
|
-
#### [
|
|
9541
|
+
#### [ProductSizePriceResponseV3](#ProductSizePriceResponseV3)
|
|
9519
9542
|
|
|
9520
9543
|
| Properties | Type | Nullable | Description |
|
|
9521
9544
|
| ---------- | ---- | -------- | ----------- |
|
|
9522
|
-
|
|
|
9545
|
+
| strategy_wise_listing | [[StrategyWiseListingSchemaV3](#StrategyWiseListingSchemaV3)] | no | |
|
|
9523
9546
|
| is_gift | boolean | no | |
|
|
9524
|
-
|
|
|
9525
|
-
|
|
|
9547
|
+
| article_assignment | [ArticleAssignmentV3](#ArticleAssignmentV3) | no | |
|
|
9548
|
+
| return_config | [ReturnConfigSchemaV3](#ReturnConfigSchemaV3) | no | |
|
|
9526
9549
|
| grouped_attributes | [[SellerGroupAttributes](#SellerGroupAttributes)] | no | |
|
|
9527
|
-
|
|
|
9528
|
-
| long_lat | [number] | no | |
|
|
9529
|
-
| price_per_unit | [ProductStockUnitPriceV2](#ProductStockUnitPriceV2) | no | |
|
|
9530
|
-
| return_config | [ReturnConfigSchemaV2](#ReturnConfigSchemaV2) | no | |
|
|
9531
|
-
| store | [StoreV2](#StoreV2) | no | |
|
|
9550
|
+
| store | [StoreV3](#StoreV3) | no | |
|
|
9532
9551
|
| article_id | string | no | |
|
|
9533
|
-
|
|
|
9534
|
-
|
|
|
9552
|
+
| price_per_unit | [ProductStockUnitPriceV3](#ProductStockUnitPriceV3) | no | |
|
|
9553
|
+
| set | [ProductSetV3](#ProductSetV3) | no | |
|
|
9554
|
+
| is_cod | boolean | no | |
|
|
9535
9555
|
| seller_count | number | no | |
|
|
9536
|
-
| set | [ProductSetV2](#ProductSetV2) | no | |
|
|
9537
|
-
| article_assignment | [ArticleAssignmentV2](#ArticleAssignmentV2) | no | |
|
|
9538
9556
|
| special_badge | string | no | |
|
|
9539
9557
|
| quantity | number | no | |
|
|
9540
|
-
|
|
|
9558
|
+
| discount | string | no | |
|
|
9559
|
+
| price_per_piece | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
|
|
9560
|
+
| price | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
|
|
9541
9561
|
| item_type | string | no | |
|
|
9542
|
-
|
|
|
9562
|
+
| seller | [SellerV3](#SellerV3) | no | |
|
|
9563
|
+
| long_lat | [number] | no | |
|
|
9564
|
+
| pincode | number | no | |
|
|
9565
|
+
| marketplace_attributes | [[MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)] | no | |
|
|
9543
9566
|
|
|
9544
9567
|
---
|
|
9545
9568
|
|
|
9546
9569
|
|
|
9547
9570
|
|
|
9548
9571
|
|
|
9549
|
-
#### [
|
|
9572
|
+
#### [ProductSizeSellerFilterSchemaV3](#ProductSizeSellerFilterSchemaV3)
|
|
9550
9573
|
|
|
9551
9574
|
| Properties | Type | Nullable | Description |
|
|
9552
9575
|
| ---------- | ---- | -------- | ----------- |
|
|
9553
|
-
| is_selected | boolean | no | |
|
|
9554
|
-
| name | string | no | |
|
|
9555
9576
|
| value | string | no | |
|
|
9577
|
+
| name | string | no | |
|
|
9578
|
+
| is_selected | boolean | no | |
|
|
9556
9579
|
|
|
9557
9580
|
---
|
|
9558
9581
|
|
|
9559
9582
|
|
|
9560
9583
|
|
|
9561
9584
|
|
|
9562
|
-
#### [
|
|
9585
|
+
#### [ProductSizeSellersResponseV3](#ProductSizeSellersResponseV3)
|
|
9563
9586
|
|
|
9564
9587
|
| Properties | Type | Nullable | Description |
|
|
9565
9588
|
| ---------- | ---- | -------- | ----------- |
|
|
9589
|
+
| sort_on | [[ProductSizeSellerFilterSchemaV3](#ProductSizeSellerFilterSchemaV3)] | no | |
|
|
9590
|
+
| items | [[ProductSizePriceResponseV3](#ProductSizePriceResponseV3)] | no | |
|
|
9566
9591
|
| page | [Page](#Page) | yes | |
|
|
9567
|
-
| items | [[ProductSizePriceResponseV2](#ProductSizePriceResponseV2)] | no | |
|
|
9568
|
-
| sort_on | [[ProductSizeSellerFilterSchemaV2](#ProductSizeSellerFilterSchemaV2)] | no | |
|
|
9569
9592
|
|
|
9570
9593
|
---
|
|
9571
9594
|
|