@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
|
@@ -3993,284 +3993,284 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
3993
3993
|
|
|
3994
3994
|
|
|
3995
3995
|
|
|
3996
|
-
#### [
|
|
3996
|
+
#### [Ownership](#Ownership)
|
|
3997
3997
|
|
|
3998
3998
|
| Properties | Type | Nullable | Description |
|
|
3999
3999
|
| ---------- | ---- | -------- | ----------- |
|
|
4000
|
-
|
|
|
4000
|
+
| payable_category | string | yes | |
|
|
4001
|
+
| payable_by | string | yes | |
|
|
4001
4002
|
|
|
4002
4003
|
---
|
|
4003
4004
|
|
|
4004
4005
|
|
|
4005
4006
|
|
|
4006
4007
|
|
|
4007
|
-
#### [
|
|
4008
|
+
#### [DisplayMetaDict](#DisplayMetaDict)
|
|
4008
4009
|
|
|
4009
4010
|
| Properties | Type | Nullable | Description |
|
|
4010
4011
|
| ---------- | ---- | -------- | ----------- |
|
|
4011
|
-
|
|
|
4012
|
-
|
|
|
4013
|
-
| exclude_brand_id | [number] | no | |
|
|
4014
|
-
| company_id | [number] | no | |
|
|
4015
|
-
| brand_id | [number] | no | |
|
|
4016
|
-
| collection_id | [string] | no | |
|
|
4017
|
-
| article_id | [string] | no | |
|
|
4018
|
-
| category_id | [number] | no | |
|
|
4019
|
-
| item_id | [number] | no | |
|
|
4012
|
+
| title | string | no | |
|
|
4013
|
+
| subtitle | string | no | |
|
|
4020
4014
|
|
|
4021
4015
|
---
|
|
4022
4016
|
|
|
4023
4017
|
|
|
4024
4018
|
|
|
4025
4019
|
|
|
4026
|
-
#### [
|
|
4020
|
+
#### [DisplayMeta](#DisplayMeta)
|
|
4027
4021
|
|
|
4028
4022
|
| Properties | Type | Nullable | Description |
|
|
4029
4023
|
| ---------- | ---- | -------- | ----------- |
|
|
4030
|
-
|
|
|
4031
|
-
|
|
|
4024
|
+
| apply | [DisplayMetaDict](#DisplayMetaDict) | no | |
|
|
4025
|
+
| description | string | no | |
|
|
4026
|
+
| remove | [DisplayMetaDict](#DisplayMetaDict) | no | |
|
|
4027
|
+
| title | string | no | |
|
|
4028
|
+
| subtitle | string | no | |
|
|
4029
|
+
| auto | [DisplayMetaDict](#DisplayMetaDict) | no | |
|
|
4032
4030
|
|
|
4033
4031
|
---
|
|
4034
4032
|
|
|
4035
4033
|
|
|
4036
4034
|
|
|
4037
4035
|
|
|
4038
|
-
#### [
|
|
4036
|
+
#### [Validity](#Validity)
|
|
4039
4037
|
|
|
4040
4038
|
| Properties | Type | Nullable | Description |
|
|
4041
4039
|
| ---------- | ---- | -------- | ----------- |
|
|
4042
|
-
|
|
|
4043
|
-
| created_on | string | no | |
|
|
4040
|
+
| priority | number | no | |
|
|
4044
4041
|
|
|
4045
4042
|
---
|
|
4046
4043
|
|
|
4047
4044
|
|
|
4048
4045
|
|
|
4049
4046
|
|
|
4050
|
-
#### [
|
|
4047
|
+
#### [CouponSchedule](#CouponSchedule)
|
|
4051
4048
|
|
|
4052
4049
|
| Properties | Type | Nullable | Description |
|
|
4053
4050
|
| ---------- | ---- | -------- | ----------- |
|
|
4054
|
-
|
|
|
4055
|
-
|
|
|
4056
|
-
|
|
|
4051
|
+
| start | string | no | |
|
|
4052
|
+
| next_schedule | [string] | no | |
|
|
4053
|
+
| duration | number | no | |
|
|
4054
|
+
| end | string | no | |
|
|
4055
|
+
| cron | string | no | |
|
|
4057
4056
|
|
|
4058
4057
|
---
|
|
4059
4058
|
|
|
4060
4059
|
|
|
4061
4060
|
|
|
4062
4061
|
|
|
4063
|
-
#### [
|
|
4062
|
+
#### [Rule](#Rule)
|
|
4064
4063
|
|
|
4065
4064
|
| Properties | Type | Nullable | Description |
|
|
4066
4065
|
| ---------- | ---- | -------- | ----------- |
|
|
4067
|
-
| min | number | no | |
|
|
4068
4066
|
| max | number | no | |
|
|
4067
|
+
| min | number | no | |
|
|
4068
|
+
| discount_qty | number | no | |
|
|
4069
|
+
| key | number | no | |
|
|
4070
|
+
| value | number | no | |
|
|
4069
4071
|
|
|
4070
4072
|
---
|
|
4071
4073
|
|
|
4072
4074
|
|
|
4073
4075
|
|
|
4074
4076
|
|
|
4075
|
-
#### [
|
|
4077
|
+
#### [RuleDefinition](#RuleDefinition)
|
|
4076
4078
|
|
|
4077
4079
|
| Properties | Type | Nullable | Description |
|
|
4078
4080
|
| ---------- | ---- | -------- | ----------- |
|
|
4079
|
-
|
|
|
4080
|
-
|
|
|
4081
|
-
|
|
|
4081
|
+
| applicable_on | string | yes | |
|
|
4082
|
+
| is_exact | boolean | no | |
|
|
4083
|
+
| currency_code | string | no | |
|
|
4084
|
+
| value_type | string | yes | |
|
|
4085
|
+
| scope | [string] | no | |
|
|
4086
|
+
| auto_apply | boolean | no | |
|
|
4087
|
+
| calculate_on | string | yes | |
|
|
4088
|
+
| type | string | yes | |
|
|
4082
4089
|
|
|
4083
4090
|
---
|
|
4084
4091
|
|
|
4085
4092
|
|
|
4086
4093
|
|
|
4087
4094
|
|
|
4088
|
-
#### [
|
|
4095
|
+
#### [CouponAction](#CouponAction)
|
|
4089
4096
|
|
|
4090
4097
|
| Properties | Type | Nullable | Description |
|
|
4091
4098
|
| ---------- | ---- | -------- | ----------- |
|
|
4092
|
-
|
|
|
4093
|
-
|
|
|
4099
|
+
| txn_mode | string | no | |
|
|
4100
|
+
| action_date | string | no | |
|
|
4094
4101
|
|
|
4095
4102
|
---
|
|
4096
4103
|
|
|
4097
4104
|
|
|
4098
4105
|
|
|
4099
4106
|
|
|
4100
|
-
#### [
|
|
4107
|
+
#### [CouponDateMeta](#CouponDateMeta)
|
|
4101
4108
|
|
|
4102
4109
|
| Properties | Type | Nullable | Description |
|
|
4103
4110
|
| ---------- | ---- | -------- | ----------- |
|
|
4104
|
-
|
|
|
4111
|
+
| modified_on | string | no | |
|
|
4112
|
+
| created_on | string | no | |
|
|
4105
4113
|
|
|
4106
4114
|
---
|
|
4107
4115
|
|
|
4108
4116
|
|
|
4109
4117
|
|
|
4110
4118
|
|
|
4111
|
-
#### [
|
|
4119
|
+
#### [Identifier](#Identifier)
|
|
4112
4120
|
|
|
4113
4121
|
| Properties | Type | Nullable | Description |
|
|
4114
4122
|
| ---------- | ---- | -------- | ----------- |
|
|
4115
|
-
|
|
|
4116
|
-
|
|
|
4117
|
-
|
|
|
4118
|
-
|
|
|
4123
|
+
| item_id | [number] | no | |
|
|
4124
|
+
| user_id | [string] | no | |
|
|
4125
|
+
| collection_id | [string] | no | |
|
|
4126
|
+
| store_id | [number] | no | |
|
|
4127
|
+
| brand_id | [number] | no | |
|
|
4128
|
+
| category_id | [number] | no | |
|
|
4129
|
+
| article_id | [string] | no | |
|
|
4130
|
+
| exclude_brand_id | [number] | no | |
|
|
4131
|
+
| company_id | [number] | no | |
|
|
4119
4132
|
|
|
4120
4133
|
---
|
|
4121
4134
|
|
|
4122
4135
|
|
|
4123
4136
|
|
|
4124
4137
|
|
|
4125
|
-
#### [
|
|
4138
|
+
#### [PaymentAllowValue](#PaymentAllowValue)
|
|
4126
4139
|
|
|
4127
4140
|
| Properties | Type | Nullable | Description |
|
|
4128
4141
|
| ---------- | ---- | -------- | ----------- |
|
|
4129
|
-
|
|
|
4130
|
-
| return_allowed | boolean | no | |
|
|
4142
|
+
| max | number | no | |
|
|
4131
4143
|
|
|
4132
4144
|
---
|
|
4133
4145
|
|
|
4134
4146
|
|
|
4135
4147
|
|
|
4136
4148
|
|
|
4137
|
-
#### [
|
|
4149
|
+
#### [PaymentModes](#PaymentModes)
|
|
4138
4150
|
|
|
4139
4151
|
| Properties | Type | Nullable | Description |
|
|
4140
4152
|
| ---------- | ---- | -------- | ----------- |
|
|
4141
|
-
|
|
|
4153
|
+
| codes | [string] | no | |
|
|
4154
|
+
| uses | [PaymentAllowValue](#PaymentAllowValue) | no | |
|
|
4155
|
+
| networks | [string] | no | |
|
|
4156
|
+
| types | [string] | no | |
|
|
4142
4157
|
|
|
4143
4158
|
---
|
|
4144
4159
|
|
|
4145
4160
|
|
|
4146
4161
|
|
|
4147
4162
|
|
|
4148
|
-
#### [
|
|
4163
|
+
#### [UsesRemaining](#UsesRemaining)
|
|
4149
4164
|
|
|
4150
4165
|
| Properties | Type | Nullable | Description |
|
|
4151
4166
|
| ---------- | ---- | -------- | ----------- |
|
|
4152
|
-
|
|
|
4153
|
-
|
|
|
4154
|
-
|
|
|
4155
|
-
| payments | [String: [PaymentModes](#PaymentModes)] | no | |
|
|
4156
|
-
| post_order | [PostOrder](#PostOrder) | no | |
|
|
4157
|
-
| coupon_allowed | boolean | no | |
|
|
4158
|
-
| bulk_bundle | [BulkBundleRestriction](#BulkBundleRestriction) | no | |
|
|
4159
|
-
| platforms | [string] | no | |
|
|
4160
|
-
| user_groups | [number] | no | |
|
|
4167
|
+
| app | number | no | |
|
|
4168
|
+
| total | number | no | |
|
|
4169
|
+
| user | number | no | |
|
|
4161
4170
|
|
|
4162
4171
|
---
|
|
4163
4172
|
|
|
4164
4173
|
|
|
4165
4174
|
|
|
4166
4175
|
|
|
4167
|
-
#### [
|
|
4176
|
+
#### [UsesRestriction](#UsesRestriction)
|
|
4168
4177
|
|
|
4169
4178
|
| Properties | Type | Nullable | Description |
|
|
4170
4179
|
| ---------- | ---- | -------- | ----------- |
|
|
4171
|
-
|
|
|
4172
|
-
|
|
|
4173
|
-
| end | string | no | |
|
|
4174
|
-
| start | string | no | |
|
|
4175
|
-
| duration | number | no | |
|
|
4180
|
+
| remaining | [UsesRemaining](#UsesRemaining) | no | |
|
|
4181
|
+
| maximum | [UsesRemaining](#UsesRemaining) | no | |
|
|
4176
4182
|
|
|
4177
4183
|
---
|
|
4178
4184
|
|
|
4179
4185
|
|
|
4180
4186
|
|
|
4181
4187
|
|
|
4182
|
-
#### [
|
|
4188
|
+
#### [PriceRange](#PriceRange)
|
|
4183
4189
|
|
|
4184
4190
|
| Properties | Type | Nullable | Description |
|
|
4185
4191
|
| ---------- | ---- | -------- | ----------- |
|
|
4186
|
-
|
|
|
4187
|
-
|
|
|
4192
|
+
| min | number | no | |
|
|
4193
|
+
| max | number | no | |
|
|
4188
4194
|
|
|
4189
4195
|
---
|
|
4190
4196
|
|
|
4191
4197
|
|
|
4192
4198
|
|
|
4193
4199
|
|
|
4194
|
-
#### [
|
|
4200
|
+
#### [BulkBundleRestriction](#BulkBundleRestriction)
|
|
4195
4201
|
|
|
4196
4202
|
| Properties | Type | Nullable | Description |
|
|
4197
4203
|
| ---------- | ---- | -------- | ----------- |
|
|
4198
|
-
|
|
|
4199
|
-
| description | string | no | |
|
|
4200
|
-
| title | string | no | |
|
|
4201
|
-
| apply | [DisplayMetaDict](#DisplayMetaDict) | no | |
|
|
4202
|
-
| remove | [DisplayMetaDict](#DisplayMetaDict) | no | |
|
|
4203
|
-
| subtitle | string | no | |
|
|
4204
|
+
| multi_store_allowed | boolean | yes | |
|
|
4204
4205
|
|
|
4205
4206
|
---
|
|
4206
4207
|
|
|
4207
4208
|
|
|
4208
4209
|
|
|
4209
4210
|
|
|
4210
|
-
#### [
|
|
4211
|
+
#### [PostOrder](#PostOrder)
|
|
4211
4212
|
|
|
4212
4213
|
| Properties | Type | Nullable | Description |
|
|
4213
4214
|
| ---------- | ---- | -------- | ----------- |
|
|
4214
|
-
|
|
|
4215
|
-
|
|
|
4216
|
-
| is_archived | boolean | no | |
|
|
4215
|
+
| return_allowed | boolean | no | |
|
|
4216
|
+
| cancellation_allowed | boolean | no | |
|
|
4217
4217
|
|
|
4218
4218
|
---
|
|
4219
4219
|
|
|
4220
4220
|
|
|
4221
4221
|
|
|
4222
4222
|
|
|
4223
|
-
#### [
|
|
4223
|
+
#### [Restrictions](#Restrictions)
|
|
4224
4224
|
|
|
4225
4225
|
| Properties | Type | Nullable | Description |
|
|
4226
4226
|
| ---------- | ---- | -------- | ----------- |
|
|
4227
|
-
|
|
|
4228
|
-
|
|
|
4227
|
+
| ordering_stores | [number] | no | |
|
|
4228
|
+
| user_groups | [number] | no | |
|
|
4229
|
+
| payments | [String: [PaymentModes](#PaymentModes)] | no | |
|
|
4230
|
+
| platforms | [string] | no | |
|
|
4231
|
+
| uses | [UsesRestriction](#UsesRestriction) | no | |
|
|
4232
|
+
| price_range | [PriceRange](#PriceRange) | no | |
|
|
4233
|
+
| coupon_allowed | boolean | no | |
|
|
4234
|
+
| bulk_bundle | [BulkBundleRestriction](#BulkBundleRestriction) | no | |
|
|
4235
|
+
| post_order | [PostOrder](#PostOrder) | no | |
|
|
4229
4236
|
|
|
4230
4237
|
---
|
|
4231
4238
|
|
|
4232
4239
|
|
|
4233
4240
|
|
|
4234
4241
|
|
|
4235
|
-
#### [
|
|
4242
|
+
#### [CouponAuthor](#CouponAuthor)
|
|
4236
4243
|
|
|
4237
4244
|
| Properties | Type | Nullable | Description |
|
|
4238
4245
|
| ---------- | ---- | -------- | ----------- |
|
|
4239
|
-
|
|
|
4240
|
-
|
|
|
4241
|
-
| discount_qty | number | no | |
|
|
4242
|
-
| max | number | no | |
|
|
4243
|
-
| key | number | no | |
|
|
4246
|
+
| created_by | string | no | |
|
|
4247
|
+
| modified_by | string | no | |
|
|
4244
4248
|
|
|
4245
4249
|
---
|
|
4246
4250
|
|
|
4247
4251
|
|
|
4248
4252
|
|
|
4249
4253
|
|
|
4250
|
-
#### [
|
|
4254
|
+
#### [State](#State)
|
|
4251
4255
|
|
|
4252
4256
|
| Properties | Type | Nullable | Description |
|
|
4253
4257
|
| ---------- | ---- | -------- | ----------- |
|
|
4254
|
-
|
|
|
4255
|
-
|
|
|
4256
|
-
|
|
|
4257
|
-
| applicable_on | string | yes | |
|
|
4258
|
-
| calculate_on | string | yes | |
|
|
4259
|
-
| scope | [string] | no | |
|
|
4260
|
-
| value_type | string | yes | |
|
|
4261
|
-
| type | string | yes | |
|
|
4258
|
+
| is_public | boolean | no | |
|
|
4259
|
+
| is_archived | boolean | no | |
|
|
4260
|
+
| is_display | boolean | no | |
|
|
4262
4261
|
|
|
4263
4262
|
---
|
|
4264
4263
|
|
|
4265
4264
|
|
|
4266
4265
|
|
|
4267
4266
|
|
|
4268
|
-
#### [
|
|
4267
|
+
#### [Validation](#Validation)
|
|
4269
4268
|
|
|
4270
4269
|
| Properties | Type | Nullable | Description |
|
|
4271
4270
|
| ---------- | ---- | -------- | ----------- |
|
|
4272
|
-
|
|
|
4273
|
-
|
|
|
4271
|
+
| anonymous | boolean | no | |
|
|
4272
|
+
| user_registered_after | string | no | |
|
|
4273
|
+
| app_id | [string] | no | |
|
|
4274
4274
|
|
|
4275
4275
|
---
|
|
4276
4276
|
|
|
@@ -4281,22 +4281,22 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4281
4281
|
|
|
4282
4282
|
| Properties | Type | Nullable | Description |
|
|
4283
4283
|
| ---------- | ---- | -------- | ----------- |
|
|
4284
|
+
| ownership | [Ownership](#Ownership) | yes | |
|
|
4285
|
+
| display_meta | [DisplayMeta](#DisplayMeta) | yes | |
|
|
4284
4286
|
| validity | [Validity](#Validity) | yes | |
|
|
4285
|
-
|
|
|
4287
|
+
| _schedule | [CouponSchedule](#CouponSchedule) | no | |
|
|
4288
|
+
| rule | [[Rule](#Rule)] | yes | |
|
|
4289
|
+
| rule_definition | [RuleDefinition](#RuleDefinition) | yes | |
|
|
4286
4290
|
| code | string | yes | |
|
|
4287
|
-
|
|
|
4291
|
+
| action | [CouponAction](#CouponAction) | no | |
|
|
4288
4292
|
| date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
|
|
4289
|
-
|
|
|
4293
|
+
| identifiers | [Identifier](#Identifier) | yes | |
|
|
4294
|
+
| type_slug | string | yes | |
|
|
4290
4295
|
| restrictions | [Restrictions](#Restrictions) | no | |
|
|
4291
|
-
|
|
|
4292
|
-
| display_meta | [DisplayMeta](#DisplayMeta) | yes | |
|
|
4296
|
+
| author | [CouponAuthor](#CouponAuthor) | no | |
|
|
4293
4297
|
| state | [State](#State) | no | |
|
|
4294
|
-
|
|
|
4295
|
-
| rule | [[Rule](#Rule)] | yes | |
|
|
4298
|
+
| validation | [Validation](#Validation) | no | |
|
|
4296
4299
|
| tags | [string] | no | |
|
|
4297
|
-
| rule_definition | [RuleDefinition](#RuleDefinition) | yes | |
|
|
4298
|
-
| ownership | [Ownership](#Ownership) | yes | |
|
|
4299
|
-
| type_slug | string | yes | |
|
|
4300
4300
|
|
|
4301
4301
|
---
|
|
4302
4302
|
|
|
@@ -4307,14 +4307,14 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4307
4307
|
|
|
4308
4308
|
| Properties | Type | Nullable | Description |
|
|
4309
4309
|
| ---------- | ---- | -------- | ----------- |
|
|
4310
|
-
| size | number | no | Current request page size |
|
|
4311
|
-
| next_id | string | no | Cursor id for next set of records. |
|
|
4312
4310
|
| last_id | string | no | Last objects id |
|
|
4313
|
-
|
|
|
4314
|
-
| page | number | no | Page requested |
|
|
4311
|
+
| next_id | string | no | Cursor id for next set of records. |
|
|
4315
4312
|
| has_previous | boolean | no | True if more records are present for previous pages. Sent for cursor pagination |
|
|
4316
|
-
| current | number | no | Current page no |
|
|
4317
4313
|
| has_next | boolean | no | True if more records are present for next pages |
|
|
4314
|
+
| size | number | no | Current request page size |
|
|
4315
|
+
| current | number | no | Current page no |
|
|
4316
|
+
| item_total | number | no | Total coupon count in system |
|
|
4317
|
+
| page | number | no | Page requested |
|
|
4318
4318
|
| type | string | yes | |
|
|
4319
4319
|
|
|
4320
4320
|
---
|
|
@@ -4362,22 +4362,22 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4362
4362
|
|
|
4363
4363
|
| Properties | Type | Nullable | Description |
|
|
4364
4364
|
| ---------- | ---- | -------- | ----------- |
|
|
4365
|
+
| ownership | [Ownership](#Ownership) | yes | |
|
|
4366
|
+
| display_meta | [DisplayMeta](#DisplayMeta) | yes | |
|
|
4365
4367
|
| validity | [Validity](#Validity) | yes | |
|
|
4366
|
-
|
|
|
4368
|
+
| _schedule | [CouponSchedule](#CouponSchedule) | no | |
|
|
4369
|
+
| rule | [[Rule](#Rule)] | yes | |
|
|
4370
|
+
| rule_definition | [RuleDefinition](#RuleDefinition) | yes | |
|
|
4367
4371
|
| code | string | yes | |
|
|
4368
|
-
|
|
|
4372
|
+
| action | [CouponAction](#CouponAction) | no | |
|
|
4369
4373
|
| date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
|
|
4370
|
-
|
|
|
4374
|
+
| identifiers | [Identifier](#Identifier) | yes | |
|
|
4375
|
+
| type_slug | string | yes | |
|
|
4371
4376
|
| restrictions | [Restrictions](#Restrictions) | no | |
|
|
4372
|
-
|
|
|
4373
|
-
| display_meta | [DisplayMeta](#DisplayMeta) | yes | |
|
|
4377
|
+
| author | [CouponAuthor](#CouponAuthor) | no | |
|
|
4374
4378
|
| state | [State](#State) | no | |
|
|
4375
|
-
|
|
|
4376
|
-
| rule | [[Rule](#Rule)] | yes | |
|
|
4379
|
+
| validation | [Validation](#Validation) | no | |
|
|
4377
4380
|
| tags | [string] | no | |
|
|
4378
|
-
| rule_definition | [RuleDefinition](#RuleDefinition) | yes | |
|
|
4379
|
-
| ownership | [Ownership](#Ownership) | yes | |
|
|
4380
|
-
| type_slug | string | yes | |
|
|
4381
4381
|
|
|
4382
4382
|
---
|
|
4383
4383
|
|
|
@@ -4396,252 +4396,252 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4396
4396
|
|
|
4397
4397
|
|
|
4398
4398
|
|
|
4399
|
-
#### [
|
|
4399
|
+
#### [PromotionSchedule](#PromotionSchedule)
|
|
4400
4400
|
|
|
4401
4401
|
| Properties | Type | Nullable | Description |
|
|
4402
4402
|
| ---------- | ---- | -------- | ----------- |
|
|
4403
|
-
|
|
|
4404
|
-
|
|
|
4405
|
-
|
|
|
4403
|
+
| start | string | yes | |
|
|
4404
|
+
| next_schedule | [string] | no | |
|
|
4405
|
+
| duration | number | no | |
|
|
4406
|
+
| end | string | no | |
|
|
4407
|
+
| published | boolean | yes | |
|
|
4408
|
+
| cron | string | no | |
|
|
4406
4409
|
|
|
4407
4410
|
---
|
|
4408
4411
|
|
|
4409
4412
|
|
|
4410
4413
|
|
|
4411
4414
|
|
|
4412
|
-
#### [
|
|
4415
|
+
#### [PromotionAuthor](#PromotionAuthor)
|
|
4413
4416
|
|
|
4414
4417
|
| Properties | Type | Nullable | Description |
|
|
4415
4418
|
| ---------- | ---- | -------- | ----------- |
|
|
4416
|
-
|
|
|
4417
|
-
|
|
|
4418
|
-
| discount_amount | number | no | |
|
|
4419
|
-
| max_discount_amount | number | no | |
|
|
4420
|
-
| discount_percentage | number | no | |
|
|
4421
|
-
| min_offer_quantity | number | no | |
|
|
4422
|
-
| discount_price | number | no | |
|
|
4419
|
+
| created_by | string | no | |
|
|
4420
|
+
| modified_by | string | no | |
|
|
4423
4421
|
|
|
4424
4422
|
---
|
|
4425
4423
|
|
|
4426
4424
|
|
|
4427
4425
|
|
|
4428
4426
|
|
|
4429
|
-
#### [
|
|
4427
|
+
#### [Visibility](#Visibility)
|
|
4430
4428
|
|
|
4431
4429
|
| Properties | Type | Nullable | Description |
|
|
4432
4430
|
| ---------- | ---- | -------- | ----------- |
|
|
4433
|
-
|
|
|
4434
|
-
|
|
|
4435
|
-
| less_than_equals | number | no | |
|
|
4436
|
-
| less_than | number | no | |
|
|
4437
|
-
| equals | number | no | |
|
|
4431
|
+
| pdp | boolean | yes | |
|
|
4432
|
+
| coupon_list | boolean | yes | |
|
|
4438
4433
|
|
|
4439
4434
|
---
|
|
4440
4435
|
|
|
4441
4436
|
|
|
4442
4437
|
|
|
4443
4438
|
|
|
4444
|
-
#### [
|
|
4439
|
+
#### [UserRegistered](#UserRegistered)
|
|
4445
4440
|
|
|
4446
4441
|
| Properties | Type | Nullable | Description |
|
|
4447
4442
|
| ---------- | ---- | -------- | ----------- |
|
|
4448
|
-
|
|
|
4449
|
-
|
|
|
4450
|
-
| item_company | [number] | no | |
|
|
4451
|
-
| item_exclude_category | [number] | no | |
|
|
4452
|
-
| item_category | [number] | no | |
|
|
4453
|
-
| item_exclude_brand | [number] | no | |
|
|
4454
|
-
| item_brand | [number] | no | |
|
|
4455
|
-
| cart_quantity | [CompareObject](#CompareObject) | no | |
|
|
4456
|
-
| item_exclude_company | [number] | no | |
|
|
4457
|
-
| all_items | boolean | no | |
|
|
4458
|
-
| item_size | [string] | no | |
|
|
4459
|
-
| buy_rules | [string] | no | |
|
|
4460
|
-
| item_exclude_store | [number] | no | |
|
|
4461
|
-
| item_exclude_sku | [string] | no | |
|
|
4462
|
-
| item_sku | [string] | no | |
|
|
4463
|
-
| item_id | [number] | no | |
|
|
4443
|
+
| start | string | no | |
|
|
4444
|
+
| end | string | no | |
|
|
4464
4445
|
|
|
4465
4446
|
---
|
|
4466
4447
|
|
|
4467
4448
|
|
|
4468
4449
|
|
|
4469
4450
|
|
|
4470
|
-
#### [
|
|
4451
|
+
#### [PaymentAllowValue1](#PaymentAllowValue1)
|
|
4471
4452
|
|
|
4472
4453
|
| Properties | Type | Nullable | Description |
|
|
4473
4454
|
| ---------- | ---- | -------- | ----------- |
|
|
4474
|
-
|
|
|
4475
|
-
| buy_condition | string | yes | |
|
|
4476
|
-
| offer | [DiscountOffer](#DiscountOffer) | yes | |
|
|
4477
|
-
| item_criteria | [ItemCriteria](#ItemCriteria) | yes | |
|
|
4455
|
+
| max | number | no | |
|
|
4478
4456
|
|
|
4479
4457
|
---
|
|
4480
4458
|
|
|
4481
4459
|
|
|
4482
4460
|
|
|
4483
4461
|
|
|
4484
|
-
#### [
|
|
4462
|
+
#### [PromotionPaymentModes](#PromotionPaymentModes)
|
|
4485
4463
|
|
|
4486
4464
|
| Properties | Type | Nullable | Description |
|
|
4487
4465
|
| ---------- | ---- | -------- | ----------- |
|
|
4488
|
-
|
|
|
4489
|
-
|
|
|
4466
|
+
| codes | [string] | no | |
|
|
4467
|
+
| uses | [PaymentAllowValue1](#PaymentAllowValue1) | no | |
|
|
4468
|
+
| type | string | yes | |
|
|
4490
4469
|
|
|
4491
4470
|
---
|
|
4492
4471
|
|
|
4493
4472
|
|
|
4494
4473
|
|
|
4495
4474
|
|
|
4496
|
-
#### [
|
|
4475
|
+
#### [UsesRemaining1](#UsesRemaining1)
|
|
4497
4476
|
|
|
4498
4477
|
| Properties | Type | Nullable | Description |
|
|
4499
4478
|
| ---------- | ---- | -------- | ----------- |
|
|
4500
|
-
|
|
|
4501
|
-
|
|
|
4479
|
+
| total | number | no | |
|
|
4480
|
+
| user | number | no | |
|
|
4502
4481
|
|
|
4503
4482
|
---
|
|
4504
4483
|
|
|
4505
4484
|
|
|
4506
4485
|
|
|
4507
4486
|
|
|
4508
|
-
#### [
|
|
4487
|
+
#### [UsesRestriction1](#UsesRestriction1)
|
|
4509
4488
|
|
|
4510
4489
|
| Properties | Type | Nullable | Description |
|
|
4511
4490
|
| ---------- | ---- | -------- | ----------- |
|
|
4512
|
-
|
|
|
4513
|
-
|
|
|
4491
|
+
| remaining | [UsesRemaining1](#UsesRemaining1) | no | |
|
|
4492
|
+
| maximum | [UsesRemaining1](#UsesRemaining1) | no | |
|
|
4514
4493
|
|
|
4515
4494
|
---
|
|
4516
4495
|
|
|
4517
4496
|
|
|
4518
4497
|
|
|
4519
4498
|
|
|
4520
|
-
#### [
|
|
4499
|
+
#### [PostOrder1](#PostOrder1)
|
|
4521
4500
|
|
|
4522
4501
|
| Properties | Type | Nullable | Description |
|
|
4523
4502
|
| ---------- | ---- | -------- | ----------- |
|
|
4524
|
-
|
|
|
4525
|
-
|
|
|
4503
|
+
| return_allowed | boolean | no | |
|
|
4504
|
+
| cancellation_allowed | boolean | no | |
|
|
4526
4505
|
|
|
4527
4506
|
---
|
|
4528
4507
|
|
|
4529
4508
|
|
|
4530
4509
|
|
|
4531
4510
|
|
|
4532
|
-
#### [
|
|
4511
|
+
#### [Restrictions1](#Restrictions1)
|
|
4533
4512
|
|
|
4534
4513
|
| Properties | Type | Nullable | Description |
|
|
4535
4514
|
| ---------- | ---- | -------- | ----------- |
|
|
4536
|
-
|
|
|
4537
|
-
|
|
|
4515
|
+
| user_registered | [UserRegistered](#UserRegistered) | no | |
|
|
4516
|
+
| user_groups | [number] | no | |
|
|
4517
|
+
| user_id | [string] | no | |
|
|
4518
|
+
| payments | [[PromotionPaymentModes](#PromotionPaymentModes)] | no | |
|
|
4519
|
+
| platforms | [string] | no | |
|
|
4520
|
+
| uses | [UsesRestriction1](#UsesRestriction1) | yes | |
|
|
4521
|
+
| order_quantity | number | no | |
|
|
4522
|
+
| anonymous_users | boolean | no | |
|
|
4523
|
+
| post_order | [PostOrder1](#PostOrder1) | no | |
|
|
4538
4524
|
|
|
4539
4525
|
---
|
|
4540
4526
|
|
|
4541
4527
|
|
|
4542
4528
|
|
|
4543
4529
|
|
|
4544
|
-
#### [
|
|
4530
|
+
#### [PromotionAction](#PromotionAction)
|
|
4545
4531
|
|
|
4546
4532
|
| Properties | Type | Nullable | Description |
|
|
4547
4533
|
| ---------- | ---- | -------- | ----------- |
|
|
4548
|
-
|
|
|
4534
|
+
| action_type | string | yes | |
|
|
4535
|
+
| action_date | string | yes | |
|
|
4549
4536
|
|
|
4550
4537
|
---
|
|
4551
4538
|
|
|
4552
4539
|
|
|
4553
4540
|
|
|
4554
4541
|
|
|
4555
|
-
#### [
|
|
4542
|
+
#### [CompareObject](#CompareObject)
|
|
4556
4543
|
|
|
4557
4544
|
| Properties | Type | Nullable | Description |
|
|
4558
4545
|
| ---------- | ---- | -------- | ----------- |
|
|
4559
|
-
|
|
|
4560
|
-
|
|
|
4561
|
-
|
|
|
4546
|
+
| greater_than | number | no | |
|
|
4547
|
+
| less_than | number | no | |
|
|
4548
|
+
| equals | number | no | |
|
|
4549
|
+
| greater_than_equals | number | no | |
|
|
4550
|
+
| less_than_equals | number | no | |
|
|
4562
4551
|
|
|
4563
4552
|
---
|
|
4564
4553
|
|
|
4565
4554
|
|
|
4566
4555
|
|
|
4567
4556
|
|
|
4568
|
-
#### [
|
|
4557
|
+
#### [ItemCriteria](#ItemCriteria)
|
|
4569
4558
|
|
|
4570
4559
|
| Properties | Type | Nullable | Description |
|
|
4571
4560
|
| ---------- | ---- | -------- | ----------- |
|
|
4572
|
-
|
|
|
4573
|
-
|
|
|
4561
|
+
| cart_quantity | [CompareObject](#CompareObject) | no | |
|
|
4562
|
+
| item_exclude_company | [number] | no | |
|
|
4563
|
+
| item_brand | [number] | no | |
|
|
4564
|
+
| item_sku | [string] | no | |
|
|
4565
|
+
| item_id | [number] | no | |
|
|
4566
|
+
| item_company | [number] | no | |
|
|
4567
|
+
| item_exclude_sku | [string] | no | |
|
|
4568
|
+
| buy_rules | [string] | no | |
|
|
4569
|
+
| item_exclude_store | [number] | no | |
|
|
4570
|
+
| item_size | [string] | no | |
|
|
4571
|
+
| item_category | [number] | no | |
|
|
4572
|
+
| item_exclude_category | [number] | no | |
|
|
4573
|
+
| cart_total | [CompareObject](#CompareObject) | no | |
|
|
4574
|
+
| all_items | boolean | no | |
|
|
4575
|
+
| item_exclude_brand | [number] | no | |
|
|
4576
|
+
| item_store | [number] | no | |
|
|
4574
4577
|
|
|
4575
4578
|
---
|
|
4576
4579
|
|
|
4577
4580
|
|
|
4578
4581
|
|
|
4579
4582
|
|
|
4580
|
-
#### [
|
|
4583
|
+
#### [DiscountOffer](#DiscountOffer)
|
|
4581
4584
|
|
|
4582
4585
|
| Properties | Type | Nullable | Description |
|
|
4583
4586
|
| ---------- | ---- | -------- | ----------- |
|
|
4584
|
-
|
|
|
4585
|
-
|
|
|
4586
|
-
|
|
|
4587
|
-
|
|
|
4588
|
-
|
|
|
4589
|
-
|
|
|
4590
|
-
|
|
|
4591
|
-
| platforms | [string] | no | |
|
|
4592
|
-
| user_groups | [number] | no | |
|
|
4587
|
+
| discount_percentage | number | no | |
|
|
4588
|
+
| max_offer_quantity | number | no | |
|
|
4589
|
+
| max_discount_amount | number | no | |
|
|
4590
|
+
| code | string | no | |
|
|
4591
|
+
| min_offer_quantity | number | no | |
|
|
4592
|
+
| discount_amount | number | no | |
|
|
4593
|
+
| discount_price | number | no | |
|
|
4593
4594
|
|
|
4594
4595
|
---
|
|
4595
4596
|
|
|
4596
4597
|
|
|
4597
4598
|
|
|
4598
4599
|
|
|
4599
|
-
#### [
|
|
4600
|
+
#### [DiscountRule](#DiscountRule)
|
|
4600
4601
|
|
|
4601
4602
|
| Properties | Type | Nullable | Description |
|
|
4602
4603
|
| ---------- | ---- | -------- | ----------- |
|
|
4603
|
-
|
|
|
4604
|
-
|
|
|
4605
|
-
|
|
|
4606
|
-
|
|
|
4607
|
-
| start | string | yes | |
|
|
4608
|
-
| duration | number | no | |
|
|
4604
|
+
| item_criteria | [ItemCriteria](#ItemCriteria) | yes | |
|
|
4605
|
+
| buy_condition | string | yes | |
|
|
4606
|
+
| offer | [DiscountOffer](#DiscountOffer) | yes | |
|
|
4607
|
+
| discount_type | string | yes | |
|
|
4609
4608
|
|
|
4610
4609
|
---
|
|
4611
4610
|
|
|
4612
4611
|
|
|
4613
4612
|
|
|
4614
4613
|
|
|
4615
|
-
#### [
|
|
4614
|
+
#### [PromotionDateMeta](#PromotionDateMeta)
|
|
4616
4615
|
|
|
4617
4616
|
| Properties | Type | Nullable | Description |
|
|
4618
4617
|
| ---------- | ---- | -------- | ----------- |
|
|
4619
|
-
|
|
|
4620
|
-
|
|
|
4618
|
+
| modified_on | string | no | |
|
|
4619
|
+
| created_on | string | no | |
|
|
4621
4620
|
|
|
4622
4621
|
---
|
|
4623
4622
|
|
|
4624
4623
|
|
|
4625
4624
|
|
|
4626
4625
|
|
|
4627
|
-
#### [
|
|
4626
|
+
#### [Ownership1](#Ownership1)
|
|
4628
4627
|
|
|
4629
4628
|
| Properties | Type | Nullable | Description |
|
|
4630
4629
|
| ---------- | ---- | -------- | ----------- |
|
|
4631
|
-
|
|
|
4632
|
-
|
|
|
4630
|
+
| payable_category | string | yes | |
|
|
4631
|
+
| payable_by | string | yes | |
|
|
4633
4632
|
|
|
4634
4633
|
---
|
|
4635
4634
|
|
|
4636
4635
|
|
|
4637
4636
|
|
|
4638
4637
|
|
|
4639
|
-
#### [
|
|
4638
|
+
#### [DisplayMeta1](#DisplayMeta1)
|
|
4640
4639
|
|
|
4641
4640
|
| Properties | Type | Nullable | Description |
|
|
4642
4641
|
| ---------- | ---- | -------- | ----------- |
|
|
4643
|
-
|
|
|
4644
|
-
|
|
|
4642
|
+
| offer_text | string | no | |
|
|
4643
|
+
| name | string | no | |
|
|
4644
|
+
| description | string | no | |
|
|
4645
4645
|
|
|
4646
4646
|
---
|
|
4647
4647
|
|
|
@@ -4652,27 +4652,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4652
4652
|
|
|
4653
4653
|
| Properties | Type | Nullable | Description |
|
|
4654
4654
|
| ---------- | ---- | -------- | ----------- |
|
|
4655
|
-
| apply_exclusive | string | no | |
|
|
4656
|
-
| stackable | boolean | no | |
|
|
4657
|
-
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4658
|
-
| apply_all_discount | boolean | no | |
|
|
4659
|
-
| discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
|
|
4660
|
-
| ownership | [Ownership1](#Ownership1) | yes | |
|
|
4661
|
-
| promo_group | string | yes | |
|
|
4662
|
-
| apply_priority | number | no | |
|
|
4663
|
-
| date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
|
|
4664
|
-
| restrictions | [Restrictions1](#Restrictions1) | no | |
|
|
4665
4655
|
| _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
|
|
4666
|
-
|
|
|
4667
|
-
| promotion_type | string | yes | |
|
|
4668
|
-
| mode | string | yes | |
|
|
4656
|
+
| apply_all_discount | boolean | no | |
|
|
4669
4657
|
| application_id | string | yes | |
|
|
4670
|
-
| _custom_json | string | no | |
|
|
4671
|
-
| currency | string | no | |
|
|
4672
|
-
| code | string | no | |
|
|
4673
4658
|
| author | [PromotionAuthor](#PromotionAuthor) | no | |
|
|
4659
|
+
| apply_priority | number | no | |
|
|
4660
|
+
| stackable | boolean | no | |
|
|
4674
4661
|
| visiblility | [Visibility](#Visibility) | no | |
|
|
4662
|
+
| restrictions | [Restrictions1](#Restrictions1) | no | |
|
|
4663
|
+
| _custom_json | string | no | |
|
|
4664
|
+
| mode | string | yes | |
|
|
4675
4665
|
| post_order_action | [PromotionAction](#PromotionAction) | no | |
|
|
4666
|
+
| discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
|
|
4667
|
+
| buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
|
|
4668
|
+
| code | string | no | |
|
|
4669
|
+
| date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
|
|
4670
|
+
| ownership | [Ownership1](#Ownership1) | yes | |
|
|
4671
|
+
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4672
|
+
| currency | string | no | |
|
|
4673
|
+
| promo_group | string | yes | |
|
|
4674
|
+
| apply_exclusive | string | no | |
|
|
4675
|
+
| promotion_type | string | yes | |
|
|
4676
4676
|
|
|
4677
4677
|
---
|
|
4678
4678
|
|
|
@@ -4695,27 +4695,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4695
4695
|
|
|
4696
4696
|
| Properties | Type | Nullable | Description |
|
|
4697
4697
|
| ---------- | ---- | -------- | ----------- |
|
|
4698
|
-
| apply_exclusive | string | no | |
|
|
4699
|
-
| stackable | boolean | no | |
|
|
4700
|
-
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4701
|
-
| apply_all_discount | boolean | no | |
|
|
4702
|
-
| discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
|
|
4703
|
-
| ownership | [Ownership1](#Ownership1) | yes | |
|
|
4704
|
-
| promo_group | string | yes | |
|
|
4705
|
-
| apply_priority | number | no | |
|
|
4706
|
-
| date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
|
|
4707
|
-
| restrictions | [Restrictions1](#Restrictions1) | no | |
|
|
4708
4698
|
| _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
|
|
4709
|
-
|
|
|
4710
|
-
| promotion_type | string | yes | |
|
|
4711
|
-
| mode | string | yes | |
|
|
4699
|
+
| apply_all_discount | boolean | no | |
|
|
4712
4700
|
| application_id | string | yes | |
|
|
4713
|
-
| _custom_json | string | no | |
|
|
4714
|
-
| currency | string | no | |
|
|
4715
|
-
| code | string | no | |
|
|
4716
4701
|
| author | [PromotionAuthor](#PromotionAuthor) | no | |
|
|
4702
|
+
| apply_priority | number | no | |
|
|
4703
|
+
| stackable | boolean | no | |
|
|
4717
4704
|
| visiblility | [Visibility](#Visibility) | no | |
|
|
4705
|
+
| restrictions | [Restrictions1](#Restrictions1) | no | |
|
|
4706
|
+
| _custom_json | string | no | |
|
|
4707
|
+
| mode | string | yes | |
|
|
4718
4708
|
| post_order_action | [PromotionAction](#PromotionAction) | no | |
|
|
4709
|
+
| discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
|
|
4710
|
+
| buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
|
|
4711
|
+
| code | string | no | |
|
|
4712
|
+
| date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
|
|
4713
|
+
| ownership | [Ownership1](#Ownership1) | yes | |
|
|
4714
|
+
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4715
|
+
| currency | string | no | |
|
|
4716
|
+
| promo_group | string | yes | |
|
|
4717
|
+
| apply_exclusive | string | no | |
|
|
4718
|
+
| promotion_type | string | yes | |
|
|
4719
4719
|
|
|
4720
4720
|
---
|
|
4721
4721
|
|
|
@@ -4726,27 +4726,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4726
4726
|
|
|
4727
4727
|
| Properties | Type | Nullable | Description |
|
|
4728
4728
|
| ---------- | ---- | -------- | ----------- |
|
|
4729
|
-
| apply_exclusive | string | no | |
|
|
4730
|
-
| stackable | boolean | no | |
|
|
4731
|
-
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4732
|
-
| apply_all_discount | boolean | no | |
|
|
4733
|
-
| discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
|
|
4734
|
-
| ownership | [Ownership1](#Ownership1) | yes | |
|
|
4735
|
-
| promo_group | string | yes | |
|
|
4736
|
-
| apply_priority | number | no | |
|
|
4737
|
-
| date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
|
|
4738
|
-
| restrictions | [Restrictions1](#Restrictions1) | no | |
|
|
4739
4729
|
| _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
|
|
4740
|
-
|
|
|
4741
|
-
| promotion_type | string | yes | |
|
|
4742
|
-
| mode | string | yes | |
|
|
4730
|
+
| apply_all_discount | boolean | no | |
|
|
4743
4731
|
| application_id | string | yes | |
|
|
4744
|
-
| _custom_json | string | no | |
|
|
4745
|
-
| currency | string | no | |
|
|
4746
|
-
| code | string | no | |
|
|
4747
4732
|
| author | [PromotionAuthor](#PromotionAuthor) | no | |
|
|
4733
|
+
| apply_priority | number | no | |
|
|
4734
|
+
| stackable | boolean | no | |
|
|
4748
4735
|
| visiblility | [Visibility](#Visibility) | no | |
|
|
4736
|
+
| restrictions | [Restrictions1](#Restrictions1) | no | |
|
|
4737
|
+
| _custom_json | string | no | |
|
|
4738
|
+
| mode | string | yes | |
|
|
4749
4739
|
| post_order_action | [PromotionAction](#PromotionAction) | no | |
|
|
4740
|
+
| discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
|
|
4741
|
+
| buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
|
|
4742
|
+
| code | string | no | |
|
|
4743
|
+
| date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
|
|
4744
|
+
| ownership | [Ownership1](#Ownership1) | yes | |
|
|
4745
|
+
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4746
|
+
| currency | string | no | |
|
|
4747
|
+
| promo_group | string | yes | |
|
|
4748
|
+
| apply_exclusive | string | no | |
|
|
4749
|
+
| promotion_type | string | yes | |
|
|
4750
4750
|
|
|
4751
4751
|
---
|
|
4752
4752
|
|
|
@@ -4770,8 +4770,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4770
4770
|
| Properties | Type | Nullable | Description |
|
|
4771
4771
|
| ---------- | ---- | -------- | ----------- |
|
|
4772
4772
|
| size | string | yes | |
|
|
4773
|
-
| product_id | string | yes | |
|
|
4774
4773
|
| quantity | number | no | |
|
|
4774
|
+
| product_id | string | yes | |
|
|
4775
4775
|
|
|
4776
4776
|
---
|
|
4777
4777
|
|
|
@@ -4793,12 +4793,12 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4793
4793
|
|
|
4794
4794
|
| Properties | Type | Nullable | Description |
|
|
4795
4795
|
| ---------- | ---- | -------- | ----------- |
|
|
4796
|
-
| selling | number | no | |
|
|
4797
|
-
| effective | number | no | |
|
|
4798
|
-
| currency_code | string | no | |
|
|
4799
|
-
| marked | number | no | |
|
|
4800
4796
|
| currency_symbol | string | no | |
|
|
4797
|
+
| marked | number | no | |
|
|
4798
|
+
| currency_code | string | no | |
|
|
4801
4799
|
| add_on | number | no | |
|
|
4800
|
+
| effective | number | no | |
|
|
4801
|
+
| selling | number | no | |
|
|
4802
4802
|
|
|
4803
4803
|
---
|
|
4804
4804
|
|
|
@@ -4809,19 +4809,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4809
4809
|
|
|
4810
4810
|
| Properties | Type | Nullable | Description |
|
|
4811
4811
|
| ---------- | ---- | -------- | ----------- |
|
|
4812
|
-
| base | [ProductPrice](#ProductPrice) | no | |
|
|
4813
4812
|
| converted | [ProductPrice](#ProductPrice) | no | |
|
|
4814
|
-
|
|
4815
|
-
---
|
|
4816
|
-
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
#### [CartProductIdentifer](#CartProductIdentifer)
|
|
4821
|
-
|
|
4822
|
-
| Properties | Type | Nullable | Description |
|
|
4823
|
-
| ---------- | ---- | -------- | ----------- |
|
|
4824
|
-
| identifier | string | no | Article idenfier generated by cart |
|
|
4813
|
+
| base | [ProductPrice](#ProductPrice) | no | |
|
|
4825
4814
|
|
|
4826
4815
|
---
|
|
4827
4816
|
|
|
@@ -4832,8 +4821,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4832
4821
|
|
|
4833
4822
|
| Properties | Type | Nullable | Description |
|
|
4834
4823
|
| ---------- | ---- | -------- | ----------- |
|
|
4835
|
-
| payable_by | string | no | promo amount bearable party |
|
|
4836
4824
|
| payable_category | string | no | promo amount payable category |
|
|
4825
|
+
| payable_by | string | no | promo amount bearable party |
|
|
4837
4826
|
|
|
4838
4827
|
---
|
|
4839
4828
|
|
|
@@ -4844,13 +4833,13 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4844
4833
|
|
|
4845
4834
|
| Properties | Type | Nullable | Description |
|
|
4846
4835
|
| ---------- | ---- | -------- | ----------- |
|
|
4847
|
-
| amount | number | no | Per unit discount amount applied with current promotion |
|
|
4848
|
-
| promo_id | string | no | Promotion id |
|
|
4849
|
-
| offer_text | string | no | Offer text of current promotion |
|
|
4850
4836
|
| article_quantity | number | no | Quantity of article on which promotion is applicable |
|
|
4837
|
+
| ownership | [Ownership2](#Ownership2) | no | Ownership of promotion |
|
|
4838
|
+
| promo_id | string | no | Promotion id |
|
|
4839
|
+
| amount | number | no | Per unit discount amount applied with current promotion |
|
|
4851
4840
|
| promotion_type | string | no | Promotion type of current promotion |
|
|
4852
4841
|
| mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
|
|
4853
|
-
|
|
|
4842
|
+
| offer_text | string | no | Offer text of current promotion |
|
|
4854
4843
|
|
|
4855
4844
|
---
|
|
4856
4845
|
|
|
@@ -4868,48 +4857,69 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4868
4857
|
|
|
4869
4858
|
|
|
4870
4859
|
|
|
4871
|
-
#### [
|
|
4860
|
+
#### [CartProductIdentifer](#CartProductIdentifer)
|
|
4872
4861
|
|
|
4873
4862
|
| Properties | Type | Nullable | Description |
|
|
4874
4863
|
| ---------- | ---- | -------- | ----------- |
|
|
4875
|
-
|
|
|
4876
|
-
| url | string | no | |
|
|
4877
|
-
| aspect_ratio | string | no | |
|
|
4864
|
+
| identifier | string | no | Article idenfier generated by cart |
|
|
4878
4865
|
|
|
4879
4866
|
---
|
|
4880
4867
|
|
|
4881
4868
|
|
|
4882
4869
|
|
|
4883
4870
|
|
|
4884
|
-
#### [
|
|
4871
|
+
#### [BaseInfo](#BaseInfo)
|
|
4885
4872
|
|
|
4886
4873
|
| Properties | Type | Nullable | Description |
|
|
4887
4874
|
| ---------- | ---- | -------- | ----------- |
|
|
4888
4875
|
| name | string | no | |
|
|
4889
|
-
| uid | number | no |
|
|
4876
|
+
| uid | number | no | |
|
|
4890
4877
|
|
|
4891
4878
|
---
|
|
4892
4879
|
|
|
4893
4880
|
|
|
4894
4881
|
|
|
4895
4882
|
|
|
4896
|
-
#### [
|
|
4883
|
+
#### [BasePrice](#BasePrice)
|
|
4897
4884
|
|
|
4898
4885
|
| Properties | Type | Nullable | Description |
|
|
4899
4886
|
| ---------- | ---- | -------- | ----------- |
|
|
4900
|
-
|
|
|
4887
|
+
| effective | number | no | |
|
|
4888
|
+
| currency_symbol | string | no | |
|
|
4889
|
+
| marked | number | no | |
|
|
4890
|
+
| currency_code | string | no | |
|
|
4901
4891
|
|
|
4902
4892
|
---
|
|
4903
4893
|
|
|
4904
4894
|
|
|
4905
4895
|
|
|
4906
4896
|
|
|
4907
|
-
#### [
|
|
4897
|
+
#### [ArticlePriceInfo](#ArticlePriceInfo)
|
|
4908
4898
|
|
|
4909
4899
|
| Properties | Type | Nullable | Description |
|
|
4910
4900
|
| ---------- | ---- | -------- | ----------- |
|
|
4911
|
-
|
|
|
4912
|
-
|
|
|
4901
|
+
| converted | [BasePrice](#BasePrice) | no | |
|
|
4902
|
+
| base | [BasePrice](#BasePrice) | no | |
|
|
4903
|
+
|
|
4904
|
+
---
|
|
4905
|
+
|
|
4906
|
+
|
|
4907
|
+
|
|
4908
|
+
|
|
4909
|
+
#### [ProductArticle](#ProductArticle)
|
|
4910
|
+
|
|
4911
|
+
| Properties | Type | Nullable | Description |
|
|
4912
|
+
| ---------- | ---- | -------- | ----------- |
|
|
4913
|
+
| extra_meta | string | no | |
|
|
4914
|
+
| quantity | number | no | |
|
|
4915
|
+
| product_group_tags | [string] | no | |
|
|
4916
|
+
| store | [BaseInfo](#BaseInfo) | no | |
|
|
4917
|
+
| seller | [BaseInfo](#BaseInfo) | no | |
|
|
4918
|
+
| price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
|
|
4919
|
+
| size | string | no | |
|
|
4920
|
+
| uid | string | no | |
|
|
4921
|
+
| _custom_json | string | no | |
|
|
4922
|
+
| parent_item_identifiers | string | no | |
|
|
4913
4923
|
| type | string | no | |
|
|
4914
4924
|
|
|
4915
4925
|
---
|
|
@@ -4917,76 +4927,67 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4917
4927
|
|
|
4918
4928
|
|
|
4919
4929
|
|
|
4920
|
-
#### [
|
|
4930
|
+
#### [CategoryInfo](#CategoryInfo)
|
|
4921
4931
|
|
|
4922
4932
|
| Properties | Type | Nullable | Description |
|
|
4923
4933
|
| ---------- | ---- | -------- | ----------- |
|
|
4924
4934
|
| name | string | no | |
|
|
4925
|
-
| uid | number | no |
|
|
4935
|
+
| uid | number | no | Product Category Id |
|
|
4926
4936
|
|
|
4927
4937
|
---
|
|
4928
4938
|
|
|
4929
4939
|
|
|
4930
4940
|
|
|
4931
4941
|
|
|
4932
|
-
#### [
|
|
4942
|
+
#### [ActionQuery](#ActionQuery)
|
|
4933
4943
|
|
|
4934
4944
|
| Properties | Type | Nullable | Description |
|
|
4935
4945
|
| ---------- | ---- | -------- | ----------- |
|
|
4936
|
-
|
|
|
4937
|
-
| images | [[ProductImage](#ProductImage)] | no | |
|
|
4938
|
-
| categories | [[CategoryInfo](#CategoryInfo)] | no | |
|
|
4939
|
-
| action | [ProductAction](#ProductAction) | no | |
|
|
4940
|
-
| brand | [BaseInfo](#BaseInfo) | no | |
|
|
4941
|
-
| slug | string | no | Unique product url name generated via product name and other meta data |
|
|
4942
|
-
| type | string | no | |
|
|
4943
|
-
| uid | number | no | |
|
|
4946
|
+
| product_slug | [string] | no | Contains list of product slug |
|
|
4944
4947
|
|
|
4945
4948
|
---
|
|
4946
4949
|
|
|
4947
4950
|
|
|
4948
4951
|
|
|
4949
4952
|
|
|
4950
|
-
#### [
|
|
4953
|
+
#### [ProductAction](#ProductAction)
|
|
4951
4954
|
|
|
4952
4955
|
| Properties | Type | Nullable | Description |
|
|
4953
4956
|
| ---------- | ---- | -------- | ----------- |
|
|
4954
|
-
|
|
|
4955
|
-
|
|
|
4956
|
-
|
|
|
4957
|
-
| currency_code | string | no | |
|
|
4957
|
+
| url | string | no | |
|
|
4958
|
+
| query | [ActionQuery](#ActionQuery) | no | |
|
|
4959
|
+
| type | string | no | |
|
|
4958
4960
|
|
|
4959
4961
|
---
|
|
4960
4962
|
|
|
4961
4963
|
|
|
4962
4964
|
|
|
4963
4965
|
|
|
4964
|
-
#### [
|
|
4966
|
+
#### [ProductImage](#ProductImage)
|
|
4965
4967
|
|
|
4966
4968
|
| Properties | Type | Nullable | Description |
|
|
4967
4969
|
| ---------- | ---- | -------- | ----------- |
|
|
4968
|
-
|
|
|
4969
|
-
|
|
|
4970
|
+
| url | string | no | |
|
|
4971
|
+
| secure_url | string | no | |
|
|
4972
|
+
| aspect_ratio | string | no | |
|
|
4970
4973
|
|
|
4971
4974
|
---
|
|
4972
4975
|
|
|
4973
4976
|
|
|
4974
4977
|
|
|
4975
4978
|
|
|
4976
|
-
#### [
|
|
4979
|
+
#### [CartProduct](#CartProduct)
|
|
4977
4980
|
|
|
4978
4981
|
| Properties | Type | Nullable | Description |
|
|
4979
4982
|
| ---------- | ---- | -------- | ----------- |
|
|
4980
|
-
|
|
|
4981
|
-
|
|
|
4982
|
-
|
|
|
4983
|
-
|
|
|
4984
|
-
|
|
|
4985
|
-
|
|
|
4986
|
-
|
|
|
4987
|
-
| quantity | number | no | |
|
|
4983
|
+
| categories | [[CategoryInfo](#CategoryInfo)] | no | |
|
|
4984
|
+
| action | [ProductAction](#ProductAction) | no | |
|
|
4985
|
+
| images | [[ProductImage](#ProductImage)] | no | |
|
|
4986
|
+
| slug | string | no | Unique product url name generated via product name and other meta data |
|
|
4987
|
+
| uid | number | no | |
|
|
4988
|
+
| name | string | no | |
|
|
4989
|
+
| brand | [BaseInfo](#BaseInfo) | no | |
|
|
4988
4990
|
| type | string | no | |
|
|
4989
|
-
| uid | string | no | |
|
|
4990
4991
|
|
|
4991
4992
|
---
|
|
4992
4993
|
|
|
@@ -4997,11 +4998,11 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4997
4998
|
|
|
4998
4999
|
| Properties | Type | Nullable | Description |
|
|
4999
5000
|
| ---------- | ---- | -------- | ----------- |
|
|
5001
|
+
| out_of_stock | boolean | no | |
|
|
5002
|
+
| other_store_quantity | number | no | |
|
|
5000
5003
|
| deliverable | boolean | no | |
|
|
5001
5004
|
| is_valid | boolean | no | |
|
|
5002
5005
|
| sizes | [string] | no | |
|
|
5003
|
-
| out_of_stock | boolean | no | |
|
|
5004
|
-
| other_store_quantity | number | no | |
|
|
5005
5006
|
|
|
5006
5007
|
---
|
|
5007
5008
|
|
|
@@ -5013,37 +5014,21 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5013
5014
|
| Properties | Type | Nullable | Description |
|
|
5014
5015
|
| ---------- | ---- | -------- | ----------- |
|
|
5015
5016
|
| price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
5016
|
-
| parent_item_identifiers | string | no | |
|
|
5017
|
-
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
5018
|
-
| promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
|
|
5019
|
-
| bulk_offer | string | no | |
|
|
5020
|
-
| message | string | no | |
|
|
5021
5017
|
| coupon_message | string | no | |
|
|
5022
|
-
| price | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
5023
|
-
| promo_meta | [PromoMeta](#PromoMeta) | no | |
|
|
5024
|
-
| product | [CartProduct](#CartProduct) | no | |
|
|
5025
|
-
| quantity | number | no | |
|
|
5026
|
-
| article | [ProductArticle](#ProductArticle) | no | |
|
|
5027
5018
|
| is_set | boolean | no | |
|
|
5028
|
-
|
|
|
5029
|
-
|
|
|
5030
|
-
|
|
|
5031
|
-
|
|
5032
|
-
|
|
5033
|
-
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
#### [CouponBreakup](#CouponBreakup)
|
|
5038
|
-
|
|
5039
|
-
| Properties | Type | Nullable | Description |
|
|
5040
|
-
| ---------- | ---- | -------- | ----------- |
|
|
5041
|
-
| code | string | no | |
|
|
5042
|
-
| value | number | no | |
|
|
5043
|
-
| is_applied | boolean | no | |
|
|
5019
|
+
| promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
|
|
5020
|
+
| quantity | number | no | |
|
|
5021
|
+
| discount | string | no | |
|
|
5022
|
+
| promo_meta | [PromoMeta](#PromoMeta) | no | |
|
|
5023
|
+
| price | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
5024
|
+
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
5025
|
+
| article | [ProductArticle](#ProductArticle) | no | |
|
|
5044
5026
|
| message | string | no | |
|
|
5045
|
-
|
|
|
5046
|
-
|
|
|
5027
|
+
| bulk_offer | string | no | |
|
|
5028
|
+
| product | [CartProduct](#CartProduct) | no | |
|
|
5029
|
+
| key | string | no | |
|
|
5030
|
+
| parent_item_identifiers | string | no | |
|
|
5031
|
+
| availability | [ProductAvailability](#ProductAvailability) | no | |
|
|
5047
5032
|
|
|
5048
5033
|
---
|
|
5049
5034
|
|
|
@@ -5055,8 +5040,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5055
5040
|
| Properties | Type | Nullable | Description |
|
|
5056
5041
|
| ---------- | ---- | -------- | ----------- |
|
|
5057
5042
|
| is_applied | boolean | no | |
|
|
5058
|
-
| description | string | no | |
|
|
5059
5043
|
| applicable | number | no | |
|
|
5044
|
+
| description | string | no | |
|
|
5060
5045
|
| total | number | no | |
|
|
5061
5046
|
|
|
5062
5047
|
---
|
|
@@ -5068,12 +5053,12 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5068
5053
|
|
|
5069
5054
|
| Properties | Type | Nullable | Description |
|
|
5070
5055
|
| ---------- | ---- | -------- | ----------- |
|
|
5071
|
-
| value | number | no | |
|
|
5072
|
-
| currency_code | string | no | |
|
|
5073
5056
|
| currency_symbol | string | no | |
|
|
5074
|
-
|
|
|
5057
|
+
| currency_code | string | no | |
|
|
5075
5058
|
| display | string | no | |
|
|
5059
|
+
| message | [string] | no | |
|
|
5076
5060
|
| key | string | no | |
|
|
5061
|
+
| value | number | no | |
|
|
5077
5062
|
|
|
5078
5063
|
---
|
|
5079
5064
|
|
|
@@ -5084,18 +5069,34 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5084
5069
|
|
|
5085
5070
|
| Properties | Type | Nullable | Description |
|
|
5086
5071
|
| ---------- | ---- | -------- | ----------- |
|
|
5072
|
+
| subtotal | number | no | |
|
|
5073
|
+
| discount | number | no | |
|
|
5074
|
+
| gst_charges | number | no | |
|
|
5075
|
+
| total | number | no | |
|
|
5076
|
+
| vog | number | no | |
|
|
5077
|
+
| you_saved | number | no | |
|
|
5078
|
+
| fynd_cash | number | no | |
|
|
5087
5079
|
| coupon | number | no | |
|
|
5088
5080
|
| cod_charge | number | no | |
|
|
5089
|
-
| vog | number | no | |
|
|
5090
|
-
| convenience_fee | number | no | |
|
|
5091
5081
|
| delivery_charge | number | no | |
|
|
5092
|
-
| gst_charges | number | no | |
|
|
5093
5082
|
| mrp_total | number | no | |
|
|
5094
|
-
|
|
|
5095
|
-
|
|
5096
|
-
|
|
5097
|
-
|
|
5098
|
-
|
|
5083
|
+
| convenience_fee | number | no | |
|
|
5084
|
+
|
|
5085
|
+
---
|
|
5086
|
+
|
|
5087
|
+
|
|
5088
|
+
|
|
5089
|
+
|
|
5090
|
+
#### [CouponBreakup](#CouponBreakup)
|
|
5091
|
+
|
|
5092
|
+
| Properties | Type | Nullable | Description |
|
|
5093
|
+
| ---------- | ---- | -------- | ----------- |
|
|
5094
|
+
| code | string | no | |
|
|
5095
|
+
| message | string | no | |
|
|
5096
|
+
| is_applied | boolean | no | |
|
|
5097
|
+
| uid | string | no | |
|
|
5098
|
+
| value | number | no | |
|
|
5099
|
+
| type | string | no | |
|
|
5099
5100
|
|
|
5100
5101
|
---
|
|
5101
5102
|
|
|
@@ -5106,10 +5107,10 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5106
5107
|
|
|
5107
5108
|
| Properties | Type | Nullable | Description |
|
|
5108
5109
|
| ---------- | ---- | -------- | ----------- |
|
|
5109
|
-
| coupon | [CouponBreakup](#CouponBreakup) | no | |
|
|
5110
5110
|
| loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
|
|
5111
5111
|
| display | [[DisplayBreakup](#DisplayBreakup)] | no | |
|
|
5112
5112
|
| raw | [RawBreakup](#RawBreakup) | no | |
|
|
5113
|
+
| coupon | [CouponBreakup](#CouponBreakup) | no | |
|
|
5113
5114
|
|
|
5114
5115
|
---
|
|
5115
5116
|
|
|
@@ -5134,9 +5135,9 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5134
5135
|
|
|
5135
5136
|
| Properties | Type | Nullable | Description |
|
|
5136
5137
|
| ---------- | ---- | -------- | ----------- |
|
|
5137
|
-
| errors | string | no | Contains field name which has error as key and error message as value |
|
|
5138
5138
|
| success | boolean | no | |
|
|
5139
5139
|
| message | string | no | |
|
|
5140
|
+
| errors | string | no | Contains field name which has error as key and error message as value |
|
|
5140
5141
|
|
|
5141
5142
|
---
|
|
5142
5143
|
|
|
@@ -5147,21 +5148,21 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5147
5148
|
|
|
5148
5149
|
| Properties | Type | Nullable | Description |
|
|
5149
5150
|
| ---------- | ---- | -------- | ----------- |
|
|
5150
|
-
|
|
|
5151
|
-
| landmark | string | no | |
|
|
5152
|
-
| area_code_slug | string | no | |
|
|
5153
|
-
| name | string | no | |
|
|
5154
|
-
| pincode | number | no | |
|
|
5151
|
+
| address_type | string | no | |
|
|
5155
5152
|
| phone | number | no | |
|
|
5153
|
+
| pincode | number | no | |
|
|
5154
|
+
| area | string | no | |
|
|
5155
|
+
| country | string | no | |
|
|
5156
|
+
| email | string | no | |
|
|
5156
5157
|
| meta | string | no | |
|
|
5158
|
+
| landmark | string | no | |
|
|
5159
|
+
| area_code_slug | string | no | |
|
|
5157
5160
|
| area_code | string | yes | |
|
|
5158
|
-
| country_code | string | no | |
|
|
5159
5161
|
| city | string | no | |
|
|
5162
|
+
| country_code | string | no | |
|
|
5160
5163
|
| state | string | no | |
|
|
5161
|
-
|
|
|
5162
|
-
|
|
|
5163
|
-
| area | string | no | |
|
|
5164
|
-
| country | string | no | |
|
|
5164
|
+
| name | string | no | |
|
|
5165
|
+
| address | string | no | |
|
|
5165
5166
|
|
|
5166
5167
|
---
|
|
5167
5168
|
|
|
@@ -5220,11 +5221,11 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5220
5221
|
|
|
5221
5222
|
| Properties | Type | Nullable | Description |
|
|
5222
5223
|
| ---------- | ---- | -------- | ----------- |
|
|
5223
|
-
|
|
|
5224
|
-
| is_valid | boolean | no | |
|
|
5224
|
+
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
5225
5225
|
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
5226
5226
|
| message | string | no | |
|
|
5227
|
-
|
|
|
5227
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
5228
|
+
| is_valid | boolean | no | |
|
|
5228
5229
|
|
|
5229
5230
|
---
|
|
5230
5231
|
|
|
@@ -5235,8 +5236,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5235
5236
|
|
|
5236
5237
|
| Properties | Type | Nullable | Description |
|
|
5237
5238
|
| ---------- | ---- | -------- | ----------- |
|
|
5238
|
-
| values | [string] | yes | |
|
|
5239
5239
|
| key | string | yes | |
|
|
5240
|
+
| values | [string] | yes | |
|
|
5240
5241
|
|
|
5241
5242
|
---
|
|
5242
5243
|
|
|
@@ -5247,10 +5248,10 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5247
5248
|
|
|
5248
5249
|
| Properties | Type | Nullable | Description |
|
|
5249
5250
|
| ---------- | ---- | -------- | ----------- |
|
|
5250
|
-
| current_status | string | no | |
|
|
5251
5251
|
| payment_gateway | string | no | |
|
|
5252
|
-
| payment_id | string | no | |
|
|
5253
5252
|
| extra_meta | string | no | |
|
|
5253
|
+
| payment_id | string | no | |
|
|
5254
|
+
| current_status | string | no | |
|
|
5254
5255
|
| order_id | string | no | |
|
|
5255
5256
|
|
|
5256
5257
|
---
|
|
@@ -5262,10 +5263,10 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5262
5263
|
|
|
5263
5264
|
| Properties | Type | Nullable | Description |
|
|
5264
5265
|
| ---------- | ---- | -------- | ----------- |
|
|
5265
|
-
| amount | number | yes | Payment amount |
|
|
5266
|
-
| meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
|
|
5267
5266
|
| name | string | no | Payment mode name |
|
|
5267
|
+
| amount | number | yes | Payment amount |
|
|
5268
5268
|
| mode | string | yes | |
|
|
5269
|
+
| meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
|
|
5269
5270
|
|
|
5270
5271
|
---
|
|
5271
5272
|
|
|
@@ -5288,23 +5289,23 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5288
5289
|
|
|
5289
5290
|
| Properties | Type | Nullable | Description |
|
|
5290
5291
|
| ---------- | ---- | -------- | ----------- |
|
|
5291
|
-
|
|
|
5292
|
-
| delivery_charges | number | yes | |
|
|
5293
|
-
| amount_paid | number | yes | |
|
|
5292
|
+
| coupon_effective_discount | number | yes | |
|
|
5294
5293
|
| cashback_applied | number | yes | |
|
|
5295
|
-
| price_effective | number | yes | |
|
|
5296
|
-
| files | [[OpenApiFiles](#OpenApiFiles)] | no | |
|
|
5297
|
-
| payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
|
|
5298
|
-
| size | string | yes | |
|
|
5299
5294
|
| product_id | number | yes | |
|
|
5295
|
+
| files | [[OpenApiFiles](#OpenApiFiles)] | no | |
|
|
5296
|
+
| cod_charges | number | yes | |
|
|
5300
5297
|
| extra_meta | string | no | |
|
|
5301
|
-
| loyalty_discount | number | no | |
|
|
5302
|
-
| discount | number | yes | |
|
|
5303
|
-
| coupon_effective_discount | number | yes | |
|
|
5304
|
-
| price_marked | number | yes | |
|
|
5305
|
-
| meta | [CartItemMeta](#CartItemMeta) | no | |
|
|
5306
5298
|
| quantity | number | no | |
|
|
5299
|
+
| discount | number | yes | |
|
|
5300
|
+
| size | string | yes | |
|
|
5307
5301
|
| employee_discount | number | no | |
|
|
5302
|
+
| meta | [CartItemMeta](#CartItemMeta) | no | |
|
|
5303
|
+
| payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
|
|
5304
|
+
| price_effective | number | yes | |
|
|
5305
|
+
| price_marked | number | yes | |
|
|
5306
|
+
| delivery_charges | number | yes | |
|
|
5307
|
+
| amount_paid | number | yes | |
|
|
5308
|
+
| loyalty_discount | number | no | |
|
|
5308
5309
|
|
|
5309
5310
|
---
|
|
5310
5311
|
|
|
@@ -5315,26 +5316,26 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5315
5316
|
|
|
5316
5317
|
| Properties | Type | Nullable | Description |
|
|
5317
5318
|
| ---------- | ---- | -------- | ----------- |
|
|
5318
|
-
|
|
|
5319
|
+
| cod_charges | number | yes | |
|
|
5320
|
+
| affiliate_order_id | string | no | |
|
|
5321
|
+
| comment | string | no | |
|
|
5319
5322
|
| coupon | string | no | |
|
|
5320
|
-
|
|
|
5321
|
-
| cart_items | [[OpenApiOrderItem](#OpenApiOrderItem)] | yes | |
|
|
5323
|
+
| coupon_value | number | yes | |
|
|
5322
5324
|
| shipping_address | [ShippingAddress](#ShippingAddress) | no | |
|
|
5323
|
-
| files | [[OpenApiFiles](#OpenApiFiles)] | no | |
|
|
5324
|
-
| comment | string | no | |
|
|
5325
|
-
| affiliate_order_id | string | no | |
|
|
5326
5325
|
| gstin | string | no | |
|
|
5327
|
-
| coupon_value | number | yes | |
|
|
5328
|
-
| billing_address | [ShippingAddress](#ShippingAddress) | yes | |
|
|
5329
|
-
| employee_discount | string | no | |
|
|
5330
|
-
| order_id | string | no | |
|
|
5331
5326
|
| delivery_charges | number | yes | |
|
|
5332
|
-
|
|
|
5333
|
-
| currency_code | string | no | |
|
|
5334
|
-
| cashback_applied | number | yes | |
|
|
5335
|
-
| payment_mode | string | no | |
|
|
5327
|
+
| coupon_code | string | yes | |
|
|
5336
5328
|
| loyalty_discount | number | no | |
|
|
5329
|
+
| payment_mode | string | no | |
|
|
5330
|
+
| cashback_applied | number | yes | |
|
|
5331
|
+
| files | [[OpenApiFiles](#OpenApiFiles)] | no | |
|
|
5332
|
+
| currency_code | string | no | |
|
|
5333
|
+
| order_id | string | no | |
|
|
5334
|
+
| cart_value | number | yes | |
|
|
5335
|
+
| employee_discount | string | no | |
|
|
5337
5336
|
| payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
|
|
5337
|
+
| cart_items | [[OpenApiOrderItem](#OpenApiOrderItem)] | yes | |
|
|
5338
|
+
| billing_address | [ShippingAddress](#ShippingAddress) | yes | |
|
|
5338
5339
|
|
|
5339
5340
|
---
|
|
5340
5341
|
|
|
@@ -5345,10 +5346,10 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5345
5346
|
|
|
5346
5347
|
| Properties | Type | Nullable | Description |
|
|
5347
5348
|
| ---------- | ---- | -------- | ----------- |
|
|
5348
|
-
| order_ref_id | string | no | Order id sent in request |
|
|
5349
5349
|
| success | boolean | no | |
|
|
5350
|
-
| message | string | no | |
|
|
5351
5350
|
| order_id | string | yes | Fynd order id |
|
|
5351
|
+
| message | string | no | |
|
|
5352
|
+
| order_ref_id | string | no | Order id sent in request |
|
|
5352
5353
|
|
|
5353
5354
|
---
|
|
5354
5355
|
|
|
@@ -5359,39 +5360,39 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5359
5360
|
|
|
5360
5361
|
| Properties | Type | Nullable | Description |
|
|
5361
5362
|
| ---------- | ---- | -------- | ----------- |
|
|
5362
|
-
| coupon | string | no | |
|
|
5363
|
-
| buy_now | boolean | no | |
|
|
5364
|
-
| cashback | string | yes | |
|
|
5365
|
-
| bulk_coupon_discount | number | no | |
|
|
5366
|
-
| fynd_credits | string | no | |
|
|
5367
|
-
| comment | string | no | |
|
|
5368
|
-
| app_id | string | no | |
|
|
5369
|
-
| discount | number | no | |
|
|
5370
|
-
| _id | string | yes | |
|
|
5371
|
-
| last_modified | string | yes | |
|
|
5372
|
-
| merge_qty | boolean | no | |
|
|
5373
|
-
| delivery_charges | string | no | |
|
|
5374
5363
|
| cod_charges | string | no | |
|
|
5375
|
-
|
|
|
5376
|
-
|
|
|
5377
|
-
| pick_up_customer_details | string | no | |
|
|
5378
|
-
| promotion | string | no | |
|
|
5364
|
+
| checkout_mode | string | no | |
|
|
5365
|
+
| coupon | string | no | |
|
|
5379
5366
|
| meta | string | no | |
|
|
5367
|
+
| gstin | string | no | |
|
|
5380
5368
|
| user_id | string | yes | |
|
|
5381
|
-
|
|
|
5369
|
+
| discount | number | no | |
|
|
5370
|
+
| fynd_credits | string | no | |
|
|
5371
|
+
| is_archive | boolean | no | |
|
|
5382
5372
|
| cart_value | number | no | |
|
|
5383
|
-
|
|
|
5384
|
-
| gstin | string | no | |
|
|
5373
|
+
| order_id | string | no | |
|
|
5385
5374
|
| expire_at | string | yes | |
|
|
5375
|
+
| app_id | string | no | |
|
|
5376
|
+
| merge_qty | boolean | no | |
|
|
5377
|
+
| last_modified | string | yes | |
|
|
5378
|
+
| _id | string | yes | |
|
|
5379
|
+
| created_on | string | yes | |
|
|
5380
|
+
| articles | [string] | yes | |
|
|
5381
|
+
| comment | string | no | |
|
|
5386
5382
|
| is_active | boolean | no | |
|
|
5387
|
-
|
|
|
5388
|
-
|
|
|
5389
|
-
| is_archive | boolean | no | |
|
|
5390
|
-
| checkout_mode | string | no | |
|
|
5383
|
+
| delivery_charges | string | no | |
|
|
5384
|
+
| cashback | string | yes | |
|
|
5391
5385
|
| payment_mode | string | no | |
|
|
5392
|
-
|
|
|
5386
|
+
| bulk_coupon_discount | number | no | |
|
|
5387
|
+
| fc_index_map | [number] | no | |
|
|
5388
|
+
| payments | string | no | |
|
|
5389
|
+
| promotion | string | no | |
|
|
5393
5390
|
| payment_methods | [string] | no | |
|
|
5394
|
-
|
|
|
5391
|
+
| shipments | [string] | no | |
|
|
5392
|
+
| uid | number | yes | |
|
|
5393
|
+
| pick_up_customer_details | string | no | |
|
|
5394
|
+
| is_default | boolean | yes | |
|
|
5395
|
+
| buy_now | boolean | no | |
|
|
5395
5396
|
|
|
5396
5397
|
---
|
|
5397
5398
|
|
|
@@ -5402,11 +5403,11 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5402
5403
|
|
|
5403
5404
|
| Properties | Type | Nullable | Description |
|
|
5404
5405
|
| ---------- | ---- | -------- | ----------- |
|
|
5405
|
-
| result | string | no | |
|
|
5406
|
-
| success | boolean | no | the request success is defined |
|
|
5407
|
-
| message | string | no | message of the response |
|
|
5408
5406
|
| items | [[AbandonedCart](#AbandonedCart)] | no | |
|
|
5407
|
+
| message | string | no | message of the response |
|
|
5409
5408
|
| page | [Page](#Page) | no | |
|
|
5409
|
+
| success | boolean | no | the request success is defined |
|
|
5410
|
+
| result | string | no | |
|
|
5410
5411
|
|
|
5411
5412
|
---
|
|
5412
5413
|
|
|
@@ -5417,8 +5418,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5417
5418
|
|
|
5418
5419
|
| Properties | Type | Nullable | Description |
|
|
5419
5420
|
| ---------- | ---- | -------- | ----------- |
|
|
5420
|
-
| symbol | string | no | |
|
|
5421
5421
|
| code | string | no | Currency code defined by ISO 4217:2015 |
|
|
5422
|
+
| symbol | string | no | |
|
|
5422
5423
|
|
|
5423
5424
|
---
|
|
5424
5425
|
|
|
@@ -5430,8 +5431,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5430
5431
|
| Properties | Type | Nullable | Description |
|
|
5431
5432
|
| ---------- | ---- | -------- | ----------- |
|
|
5432
5433
|
| payment_identifier | string | no | |
|
|
5433
|
-
| default_options | string | no | |
|
|
5434
5434
|
| enabled | boolean | no | |
|
|
5435
|
+
| default_options | string | no | |
|
|
5435
5436
|
|
|
5436
5437
|
---
|
|
5437
5438
|
|
|
@@ -5443,21 +5444,21 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5443
5444
|
| Properties | Type | Nullable | Description |
|
|
5444
5445
|
| ---------- | ---- | -------- | ----------- |
|
|
5445
5446
|
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
5446
|
-
|
|
|
5447
|
-
| buy_now | boolean | no | |
|
|
5448
|
-
| is_valid | boolean | no | |
|
|
5447
|
+
| last_modified | string | no | |
|
|
5449
5448
|
| delivery_charge_info | string | no | |
|
|
5450
|
-
| id | string | no | |
|
|
5451
|
-
| message | string | no | |
|
|
5452
|
-
| coupon_text | string | no | |
|
|
5453
|
-
| checkout_mode | string | no | |
|
|
5454
5449
|
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
5450
|
+
| checkout_mode | string | no | |
|
|
5455
5451
|
| comment | string | no | |
|
|
5456
|
-
| gstin | string | no | |
|
|
5457
5452
|
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
5458
|
-
| restrict_checkout | boolean | no | |
|
|
5459
|
-
| last_modified | string | no | |
|
|
5460
5453
|
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
5454
|
+
| is_valid | boolean | no | |
|
|
5455
|
+
| message | string | no | |
|
|
5456
|
+
| restrict_checkout | boolean | no | |
|
|
5457
|
+
| coupon_text | string | no | |
|
|
5458
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
5459
|
+
| id | string | no | |
|
|
5460
|
+
| gstin | string | no | |
|
|
5461
|
+
| buy_now | boolean | no | |
|
|
5461
5462
|
|
|
5462
5463
|
---
|
|
5463
5464
|
|
|
@@ -5469,17 +5470,18 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5469
5470
|
| Properties | Type | Nullable | Description |
|
|
5470
5471
|
| ---------- | ---- | -------- | ----------- |
|
|
5471
5472
|
| seller_id | number | no | |
|
|
5472
|
-
|
|
|
5473
|
-
| store_id | number | no | |
|
|
5474
|
-
| pos | boolean | no | |
|
|
5475
|
-
| display | string | no | |
|
|
5476
|
-
| item_size | string | no | |
|
|
5477
|
-
| product_group_tags | [string] | no | |
|
|
5478
|
-
| article_assignment | string | no | |
|
|
5473
|
+
| item_id | number | no | |
|
|
5479
5474
|
| extra_meta | string | no | |
|
|
5480
5475
|
| quantity | number | no | |
|
|
5476
|
+
| product_group_tags | [string] | no | |
|
|
5477
|
+
| item_size | string | no | |
|
|
5478
|
+
| display | string | no | |
|
|
5479
|
+
| store_id | number | no | |
|
|
5480
|
+
| _custom_json | string | no | |
|
|
5481
|
+
| parent_item_identifiers | string | no | |
|
|
5481
5482
|
| article_id | string | no | |
|
|
5482
|
-
|
|
|
5483
|
+
| pos | boolean | no | |
|
|
5484
|
+
| article_assignment | string | no | |
|
|
5483
5485
|
|
|
5484
5486
|
---
|
|
5485
5487
|
|
|
@@ -5502,9 +5504,9 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5502
5504
|
| Properties | Type | Nullable | Description |
|
|
5503
5505
|
| ---------- | ---- | -------- | ----------- |
|
|
5504
5506
|
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
5507
|
+
| partial | boolean | no | When adding multiple items check if all added. True if only few are added. |
|
|
5505
5508
|
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
5506
5509
|
| message | string | no | |
|
|
5507
|
-
| partial | boolean | no | When adding multiple items check if all added. True if only few are added. |
|
|
5508
5510
|
|
|
5509
5511
|
---
|
|
5510
5512
|
|
|
@@ -5515,14 +5517,15 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5515
5517
|
|
|
5516
5518
|
| Properties | Type | Nullable | Description |
|
|
5517
5519
|
| ---------- | ---- | -------- | ----------- |
|
|
5518
|
-
| parent_item_identifiers | string | no | |
|
|
5519
|
-
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
5520
|
-
| item_size | string | no | |
|
|
5521
5520
|
| item_id | number | no | |
|
|
5522
5521
|
| extra_meta | string | no | |
|
|
5523
|
-
| article_id | string | no | |
|
|
5524
5522
|
| quantity | number | no | |
|
|
5523
|
+
| item_size | string | no | |
|
|
5524
|
+
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
5525
5525
|
| item_index | number | no | |
|
|
5526
|
+
| _custom_json | string | no | |
|
|
5527
|
+
| parent_item_identifiers | string | no | |
|
|
5528
|
+
| article_id | string | no | |
|
|
5526
5529
|
|
|
5527
5530
|
---
|
|
5528
5531
|
|