@gofynd/fdk-client-javascript 1.0.0 → 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.
Files changed (104) hide show
  1. package/documentation/application/CATALOG.md +371 -371
  2. package/documentation/application/ORDER.md +272 -272
  3. package/documentation/application/PAYMENT.md +269 -269
  4. package/documentation/platform/CATALOG.md +1678 -1664
  5. package/documentation/platform/COMPANYPROFILE.md +201 -201
  6. package/documentation/platform/ORDER.md +1442 -1323
  7. package/documentation/platform/PAYMENT.md +88 -88
  8. package/index.js +7 -1
  9. package/package.json +1 -1
  10. package/sdk/application/Cart/CartApplicationClient.js +302 -0
  11. package/sdk/application/Cart/CartApplicationValidator.js +1 -0
  12. package/sdk/application/Catalog/CatalogApplicationClient.js +378 -0
  13. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +17 -17
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +500 -500
  15. package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
  16. package/sdk/application/Common/CommonApplicationClient.js +22 -0
  17. package/sdk/application/Common/CommonApplicationValidator.js +1 -0
  18. package/sdk/application/Communication/CommunicationApplicationClient.js +41 -0
  19. package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
  20. package/sdk/application/Configuration/ConfigurationApplicationClient.js +200 -0
  21. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
  22. package/sdk/application/Content/ContentApplicationClient.js +215 -0
  23. package/sdk/application/Content/ContentApplicationValidator.js +1 -0
  24. package/sdk/application/FileStorage/FileStorageApplicationClient.js +33 -0
  25. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
  26. package/sdk/application/Lead/LeadApplicationClient.js +81 -0
  27. package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
  28. package/sdk/application/Logistic/LogisticApplicationClient.js +44 -0
  29. package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
  30. package/sdk/application/Order/OrderApplicationClient.js +146 -0
  31. package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
  32. package/sdk/application/Order/OrderApplicationModel.js +329 -329
  33. package/sdk/application/Order/OrderApplicationValidator.js +1 -0
  34. package/sdk/application/Payment/PaymentApplicationClient.js +528 -0
  35. package/sdk/application/Payment/PaymentApplicationModel.d.ts +5 -5
  36. package/sdk/application/Payment/PaymentApplicationModel.js +391 -391
  37. package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
  38. package/sdk/application/PosCart/PosCartApplicationClient.js +329 -0
  39. package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
  40. package/sdk/application/Rewards/RewardsApplicationClient.js +81 -0
  41. package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
  42. package/sdk/application/Share/ShareApplicationClient.js +87 -0
  43. package/sdk/application/Share/ShareApplicationValidator.js +1 -0
  44. package/sdk/application/Theme/ThemeApplicationClient.js +44 -0
  45. package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
  46. package/sdk/application/User/UserApplicationClient.js +405 -0
  47. package/sdk/application/User/UserApplicationValidator.js +1 -0
  48. package/sdk/common/AxiosHelper.js +1 -1
  49. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +114 -0
  50. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +58 -0
  51. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +46 -0
  52. package/sdk/platform/Billing/BillingPlatformClient.js +160 -0
  53. package/sdk/platform/Cart/CartPlatformApplicationClient.js +246 -0
  54. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +29 -29
  55. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +839 -48
  56. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +3 -3
  57. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +9 -9
  58. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +54 -54
  59. package/sdk/platform/Catalog/CatalogPlatformClient.js +1149 -96
  60. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +58 -57
  61. package/sdk/platform/Catalog/CatalogPlatformModel.js +1626 -1614
  62. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +6 -6
  63. package/sdk/platform/Catalog/CatalogPlatformValidator.js +20 -20
  64. package/sdk/platform/Common/CommonPlatformClient.js +26 -0
  65. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +587 -0
  66. package/sdk/platform/Communication/CommunicationPlatformClient.js +15 -0
  67. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +179 -0
  68. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +11 -11
  69. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +269 -269
  70. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +382 -0
  71. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +282 -0
  72. package/sdk/platform/Content/ContentPlatformApplicationClient.js +866 -0
  73. package/sdk/platform/Discount/DiscountPlatformClient.js +152 -0
  74. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +54 -0
  75. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +76 -0
  76. package/sdk/platform/Inventory/InventoryPlatformClient.js +161 -0
  77. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +162 -0
  78. package/sdk/platform/Lead/LeadPlatformClient.js +140 -0
  79. package/sdk/platform/Order/OrderPlatformApplicationClient.js +55 -0
  80. package/sdk/platform/Order/OrderPlatformClient.d.ts +15 -6
  81. package/sdk/platform/Order/OrderPlatformClient.js +674 -15
  82. package/sdk/platform/Order/OrderPlatformModel.d.ts +67 -60
  83. package/sdk/platform/Order/OrderPlatformModel.js +1559 -1623
  84. package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
  85. package/sdk/platform/Order/OrderPlatformValidator.js +10 -4
  86. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +26 -0
  87. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +165 -0
  88. package/sdk/platform/Payment/PaymentPlatformClient.js +139 -0
  89. package/sdk/platform/Payment/PaymentPlatformModel.js +137 -137
  90. package/sdk/platform/PlatformApplicationClient.d.ts +2217 -2243
  91. package/sdk/platform/PlatformApplicationClient.js +2514 -2524
  92. package/sdk/platform/PlatformClient.d.ts +2217 -2243
  93. package/sdk/platform/PlatformClient.js +2514 -2524
  94. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +169 -0
  95. package/sdk/platform/Share/SharePlatformApplicationClient.js +53 -0
  96. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +293 -0
  97. package/sdk/platform/User/UserPlatformApplicationClient.js +145 -0
  98. package/sdk/platform/Webhook/WebhookPlatformClient.js +90 -0
  99. package/sdk/public/Configuration/ConfigurationPublicClient.js +25 -0
  100. package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
  101. package/sdk/public/Inventory/InventoryPublicClient.js +75 -0
  102. package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
  103. package/sdk/public/Webhook/WebhookPublicClient.js +29 -0
  104. package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
@@ -7888,78 +7888,77 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
7888
7888
 
7889
7889
 
7890
7890
 
7891
- #### [ApplicationItemMOQ](#ApplicationItemMOQ)
7891
+ #### [ProductListingActionPage](#ProductListingActionPage)
7892
7892
 
7893
7893
  | Properties | Type | Nullable | Description |
7894
7894
  | ---------- | ---- | -------- | ----------- |
7895
- | increment_unit | number | no | |
7896
- | maximum | number | no | |
7897
- | minimum | number | no | |
7895
+ | type | string | no | |
7896
+ | query | string | no | |
7897
+ | params | string | no | |
7898
7898
 
7899
7899
  ---
7900
7900
 
7901
7901
 
7902
7902
 
7903
7903
 
7904
- #### [Meta](#Meta)
7904
+ #### [ProductListingAction](#ProductListingAction)
7905
7905
 
7906
7906
  | Properties | Type | Nullable | Description |
7907
7907
  | ---------- | ---- | -------- | ----------- |
7908
- | source | string | no | |
7908
+ | type | string | no | |
7909
+ | page | [ProductListingActionPage](#ProductListingActionPage) | no | |
7909
7910
 
7910
7911
  ---
7911
7912
 
7912
7913
 
7913
7914
 
7914
7915
 
7915
- #### [Media](#Media)
7916
+ #### [Meta](#Meta)
7916
7917
 
7917
7918
  | Properties | Type | Nullable | Description |
7918
7919
  | ---------- | ---- | -------- | ----------- |
7919
- | meta | [Meta](#Meta) | no | |
7920
- | type | string | no | |
7921
- | url | string | no | |
7922
- | alt | string | no | |
7920
+ | source | string | no | |
7923
7921
 
7924
7922
  ---
7925
7923
 
7926
7924
 
7927
7925
 
7928
7926
 
7929
- #### [ProductListingActionPage](#ProductListingActionPage)
7927
+ #### [Media](#Media)
7930
7928
 
7931
7929
  | Properties | Type | Nullable | Description |
7932
7930
  | ---------- | ---- | -------- | ----------- |
7933
- | query | string | no | |
7934
- | params | string | no | |
7935
7931
  | type | string | no | |
7932
+ | meta | [Meta](#Meta) | no | |
7933
+ | alt | string | no | |
7934
+ | url | string | no | |
7936
7935
 
7937
7936
  ---
7938
7937
 
7939
7938
 
7940
7939
 
7941
7940
 
7942
- #### [ProductListingAction](#ProductListingAction)
7941
+ #### [ProductBrand](#ProductBrand)
7943
7942
 
7944
7943
  | Properties | Type | Nullable | Description |
7945
7944
  | ---------- | ---- | -------- | ----------- |
7946
- | page | [ProductListingActionPage](#ProductListingActionPage) | no | |
7947
- | type | string | no | |
7945
+ | description | string | no | |
7946
+ | action | [ProductListingAction](#ProductListingAction) | no | |
7947
+ | uid | number | no | |
7948
+ | name | string | no | |
7949
+ | logo | [Media](#Media) | no | |
7948
7950
 
7949
7951
  ---
7950
7952
 
7951
7953
 
7952
7954
 
7953
7955
 
7954
- #### [ProductBrand](#ProductBrand)
7956
+ #### [NetQuantity](#NetQuantity)
7955
7957
 
7956
7958
  | Properties | Type | Nullable | Description |
7957
7959
  | ---------- | ---- | -------- | ----------- |
7958
- | logo | [Media](#Media) | no | |
7959
- | name | string | no | |
7960
- | uid | number | no | |
7961
- | action | [ProductListingAction](#ProductListingAction) | no | |
7962
- | description | string | no | |
7960
+ | value | number | no | |
7961
+ | unit | any | no | |
7963
7962
 
7964
7963
  ---
7965
7964
 
@@ -7970,21 +7969,21 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
7970
7969
 
7971
7970
  | Properties | Type | Nullable | Description |
7972
7971
  | ---------- | ---- | -------- | ----------- |
7972
+ | l1 | [ProductBrand](#ProductBrand) | no | |
7973
7973
  | l2 | [ProductBrand](#ProductBrand) | no | |
7974
7974
  | l3 | [ProductBrand](#ProductBrand) | no | |
7975
- | l1 | [ProductBrand](#ProductBrand) | no | |
7976
7975
 
7977
7976
  ---
7978
7977
 
7979
7978
 
7980
7979
 
7981
7980
 
7982
- #### [CustomMetaFields](#CustomMetaFields)
7981
+ #### [ApplicationItemSEO](#ApplicationItemSEO)
7983
7982
 
7984
7983
  | Properties | Type | Nullable | Description |
7985
7984
  | ---------- | ---- | -------- | ----------- |
7986
- | key | string | yes | |
7987
- | value | string | yes | |
7985
+ | description | any | no | |
7986
+ | title | any | no | |
7988
7987
 
7989
7988
  ---
7990
7989
 
@@ -8008,8 +8007,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8008
8007
 
8009
8008
  | Properties | Type | Nullable | Description |
8010
8009
  | ---------- | ---- | -------- | ----------- |
8011
- | title | string | no | |
8012
8010
  | details | [[ProductDetailAttribute](#ProductDetailAttribute)] | no | |
8011
+ | title | string | no | |
8013
8012
 
8014
8013
  ---
8015
8014
 
@@ -8020,10 +8019,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8020
8019
 
8021
8020
  | Properties | Type | Nullable | Description |
8022
8021
  | ---------- | ---- | -------- | ----------- |
8023
- | max | number | no | |
8024
8022
  | min | number | no | |
8025
- | currency_symbol | string | no | |
8023
+ | max | number | no | |
8026
8024
  | currency_code | string | no | |
8025
+ | currency_symbol | string | no | |
8027
8026
 
8028
8027
  ---
8029
8028
 
@@ -8042,24 +8041,25 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8042
8041
 
8043
8042
 
8044
8043
 
8045
- #### [NetQuantity](#NetQuantity)
8044
+ #### [CustomMetaFields](#CustomMetaFields)
8046
8045
 
8047
8046
  | Properties | Type | Nullable | Description |
8048
8047
  | ---------- | ---- | -------- | ----------- |
8049
- | unit | any | no | |
8050
- | value | number | no | |
8048
+ | value | string | yes | |
8049
+ | key | string | yes | |
8051
8050
 
8052
8051
  ---
8053
8052
 
8054
8053
 
8055
8054
 
8056
8055
 
8057
- #### [ApplicationItemSEO](#ApplicationItemSEO)
8056
+ #### [ApplicationItemMOQ](#ApplicationItemMOQ)
8058
8057
 
8059
8058
  | Properties | Type | Nullable | Description |
8060
8059
  | ---------- | ---- | -------- | ----------- |
8061
- | title | any | no | |
8062
- | description | any | no | |
8060
+ | increment_unit | number | no | |
8061
+ | maximum | number | no | |
8062
+ | minimum | number | no | |
8063
8063
 
8064
8064
  ---
8065
8065
 
@@ -8070,40 +8070,40 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8070
8070
 
8071
8071
  | Properties | Type | Nullable | Description |
8072
8072
  | ---------- | ---- | -------- | ----------- |
8073
- | discount | string | no | |
8073
+ | attributes | string | no | |
8074
+ | brand | [ProductBrand](#ProductBrand) | no | |
8075
+ | highlights | [string] | no | |
8076
+ | teaser_tag | string | no | |
8077
+ | net_quantity | [NetQuantity](#NetQuantity) | no | |
8078
+ | similars | [string] | no | |
8079
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8080
+ | category_map | [ProductCategoryMap](#ProductCategoryMap) | no | |
8081
+ | color | string | no | |
8082
+ | is_dependent | boolean | no | |
8083
+ | slug | string | yes | |
8084
+ | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8085
+ | has_variant | boolean | no | |
8086
+ | item_code | string | no | |
8087
+ | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8088
+ | medias | [[Media](#Media)] | no | |
8089
+ | categories | [[ProductBrand](#ProductBrand)] | no | |
8090
+ | tags | [string] | no | |
8091
+ | rating | number | no | |
8074
8092
  | type | string | no | |
8075
- | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8076
- | image_nature | string | no | |
8093
+ | rating_count | number | no | |
8094
+ | description | string | no | |
8095
+ | discount | string | no | |
8096
+ | short_description | string | no | |
8077
8097
  | _custom_json | string | no | |
8078
- | tags | [string] | no | |
8079
- | category_map | [ProductCategoryMap](#ProductCategoryMap) | no | |
8080
8098
  | uid | number | no | |
8081
- | slug | string | yes | |
8099
+ | image_nature | string | no | |
8100
+ | price | [ProductListingPrice](#ProductListingPrice) | no | |
8101
+ | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8102
+ | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8082
8103
  | item_type | string | no | |
8083
- | color | string | no | |
8084
- | medias | [[Media](#Media)] | no | |
8085
- | highlights | [string] | no | |
8086
8104
  | name | string | no | |
8087
8105
  | tryouts | [string] | no | |
8088
- | rating_count | number | no | |
8089
- | attributes | string | no | |
8090
- | similars | [string] | no | |
8091
- | item_code | string | no | |
8092
- | teaser_tag | string | no | |
8093
- | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8094
- | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8095
- | price | [ProductListingPrice](#ProductListingPrice) | no | |
8096
- | brand | [ProductBrand](#ProductBrand) | no | |
8097
8106
  | product_online_date | string | no | |
8098
- | rating | number | no | |
8099
- | net_quantity | [NetQuantity](#NetQuantity) | no | |
8100
- | categories | [[ProductBrand](#ProductBrand)] | no | |
8101
- | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8102
- | short_description | string | no | |
8103
- | is_dependent | boolean | no | |
8104
- | has_variant | boolean | no | |
8105
- | action | [ProductListingAction](#ProductListingAction) | no | |
8106
- | description | string | no | |
8107
8107
 
8108
8108
  ---
8109
8109
 
@@ -8121,26 +8121,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8121
8121
 
8122
8122
 
8123
8123
 
8124
- #### [ProductSizeStores](#ProductSizeStores)
8125
-
8126
- | Properties | Type | Nullable | Description |
8127
- | ---------- | ---- | -------- | ----------- |
8128
- | count | number | no | |
8129
-
8130
- ---
8131
-
8132
-
8133
-
8134
-
8135
8124
  #### [Dimension](#Dimension)
8136
8125
 
8137
8126
  | Properties | Type | Nullable | Description |
8138
8127
  | ---------- | ---- | -------- | ----------- |
8139
- | height | number | yes | |
8128
+ | length | number | yes | |
8140
8129
  | unit | string | yes | |
8130
+ | height | number | yes | |
8141
8131
  | width | number | yes | |
8142
8132
  | is_default | boolean | yes | |
8143
- | length | number | yes | |
8144
8133
 
8145
8134
  ---
8146
8135
 
@@ -8151,9 +8140,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8151
8140
 
8152
8141
  | Properties | Type | Nullable | Description |
8153
8142
  | ---------- | ---- | -------- | ----------- |
8143
+ | unit | string | yes | |
8154
8144
  | shipping | number | yes | |
8155
8145
  | is_default | boolean | yes | |
8156
- | unit | string | yes | |
8157
8146
 
8158
8147
  ---
8159
8148
 
@@ -8164,12 +8153,12 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8164
8153
 
8165
8154
  | Properties | Type | Nullable | Description |
8166
8155
  | ---------- | ---- | -------- | ----------- |
8156
+ | quantity | number | no | |
8167
8157
  | dimension | [Dimension](#Dimension) | no | |
8158
+ | value | string | no | |
8168
8159
  | display | string | no | |
8169
8160
  | is_available | boolean | no | |
8170
8161
  | seller_identifiers | [string] | no | |
8171
- | value | string | no | |
8172
- | quantity | number | no | |
8173
8162
  | weight | [Weight](#Weight) | no | |
8174
8163
 
8175
8164
  ---
@@ -8177,12 +8166,23 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8177
8166
 
8178
8167
 
8179
8168
 
8169
+ #### [ProductSizeStores](#ProductSizeStores)
8170
+
8171
+ | Properties | Type | Nullable | Description |
8172
+ | ---------- | ---- | -------- | ----------- |
8173
+ | count | number | no | |
8174
+
8175
+ ---
8176
+
8177
+
8178
+
8179
+
8180
8180
  #### [ColumnHeader](#ColumnHeader)
8181
8181
 
8182
8182
  | Properties | Type | Nullable | Description |
8183
8183
  | ---------- | ---- | -------- | ----------- |
8184
- | convertable | boolean | no | |
8185
8184
  | value | string | no | |
8185
+ | convertable | boolean | no | |
8186
8186
 
8187
8187
  ---
8188
8188
 
@@ -8193,12 +8193,12 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8193
8193
 
8194
8194
  | Properties | Type | Nullable | Description |
8195
8195
  | ---------- | ---- | -------- | ----------- |
8196
+ | col_3 | [ColumnHeader](#ColumnHeader) | no | |
8197
+ | col_6 | [ColumnHeader](#ColumnHeader) | no | |
8198
+ | col_5 | [ColumnHeader](#ColumnHeader) | no | |
8199
+ | col_1 | [ColumnHeader](#ColumnHeader) | no | |
8196
8200
  | col_2 | [ColumnHeader](#ColumnHeader) | no | |
8197
8201
  | col_4 | [ColumnHeader](#ColumnHeader) | no | |
8198
- | col_1 | [ColumnHeader](#ColumnHeader) | no | |
8199
- | col_5 | [ColumnHeader](#ColumnHeader) | no | |
8200
- | col_6 | [ColumnHeader](#ColumnHeader) | no | |
8201
- | col_3 | [ColumnHeader](#ColumnHeader) | no | |
8202
8202
 
8203
8203
  ---
8204
8204
 
@@ -8209,12 +8209,12 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8209
8209
 
8210
8210
  | Properties | Type | Nullable | Description |
8211
8211
  | ---------- | ---- | -------- | ----------- |
8212
+ | col_3 | string | no | |
8213
+ | col_6 | string | no | |
8214
+ | col_5 | string | no | |
8215
+ | col_1 | string | no | |
8212
8216
  | col_2 | string | no | |
8213
8217
  | col_4 | string | no | |
8214
- | col_1 | string | no | |
8215
- | col_5 | string | no | |
8216
- | col_6 | string | no | |
8217
- | col_3 | string | no | |
8218
8218
 
8219
8219
  ---
8220
8220
 
@@ -8225,13 +8225,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8225
8225
 
8226
8226
  | Properties | Type | Nullable | Description |
8227
8227
  | ---------- | ---- | -------- | ----------- |
8228
+ | image | string | no | |
8228
8229
  | unit | string | no | |
8229
8230
  | headers | [ColumnHeaders](#ColumnHeaders) | no | |
8230
- | sizes | [[SizeChartValues](#SizeChartValues)] | no | |
8231
- | image | string | no | |
8231
+ | description | string | no | |
8232
8232
  | size_tip | string | no | |
8233
+ | sizes | [[SizeChartValues](#SizeChartValues)] | no | |
8233
8234
  | title | string | no | |
8234
- | description | string | no | |
8235
8235
 
8236
8236
  ---
8237
8237
 
@@ -8244,11 +8244,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8244
8244
  | ---------- | ---- | -------- | ----------- |
8245
8245
  | discount | string | no | |
8246
8246
  | multi_size | boolean | no | |
8247
- | stores | [ProductSizeStores](#ProductSizeStores) | no | |
8247
+ | sellable | boolean | no | |
8248
8248
  | sizes | [[ProductSize](#ProductSize)] | no | |
8249
8249
  | price | [ProductListingPrice](#ProductListingPrice) | no | |
8250
+ | stores | [ProductSizeStores](#ProductSizeStores) | no | |
8250
8251
  | size_chart | [SizeChart](#SizeChart) | no | |
8251
- | sellable | boolean | no | |
8252
8252
 
8253
8253
  ---
8254
8254
 
@@ -8260,8 +8260,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8260
8260
  | Properties | Type | Nullable | Description |
8261
8261
  | ---------- | ---- | -------- | ----------- |
8262
8262
  | display | string | no | |
8263
- | logo | string | no | |
8264
8263
  | key | string | no | |
8264
+ | logo | string | no | |
8265
8265
  | description | string | no | |
8266
8266
 
8267
8267
  ---
@@ -8273,8 +8273,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8273
8273
 
8274
8274
  | Properties | Type | Nullable | Description |
8275
8275
  | ---------- | ---- | -------- | ----------- |
8276
- | title | string | no | |
8277
8276
  | details | [[AttributeDetail](#AttributeDetail)] | no | |
8277
+ | title | string | no | |
8278
8278
 
8279
8279
  ---
8280
8280
 
@@ -8285,8 +8285,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8285
8285
 
8286
8286
  | Properties | Type | Nullable | Description |
8287
8287
  | ---------- | ---- | -------- | ----------- |
8288
- | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8289
8288
  | items | [[ProductDetail](#ProductDetail)] | no | |
8289
+ | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8290
8290
 
8291
8291
  ---
8292
8292
 
@@ -8298,9 +8298,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8298
8298
  | Properties | Type | Nullable | Description |
8299
8299
  | ---------- | ---- | -------- | ----------- |
8300
8300
  | subtitle | string | no | |
8301
- | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8302
- | title | string | no | |
8303
8301
  | items | [[ProductDetail](#ProductDetail)] | no | |
8302
+ | title | string | no | |
8303
+ | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8304
8304
 
8305
8305
  ---
8306
8306
 
@@ -8322,16 +8322,16 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8322
8322
 
8323
8323
  | Properties | Type | Nullable | Description |
8324
8324
  | ---------- | ---- | -------- | ----------- |
8325
- | slug | string | no | |
8326
- | value | string | no | |
8325
+ | color_name | string | no | |
8326
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8327
+ | uid | number | no | |
8327
8328
  | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8328
8329
  | color | string | no | |
8329
8330
  | medias | [[Media](#Media)] | no | |
8330
- | color_name | string | no | |
8331
- | is_available | boolean | no | |
8331
+ | value | string | no | |
8332
8332
  | name | string | no | |
8333
- | uid | number | no | |
8334
- | action | [ProductListingAction](#ProductListingAction) | no | |
8333
+ | is_available | boolean | no | |
8334
+ | slug | string | no | |
8335
8335
 
8336
8336
  ---
8337
8337
 
@@ -8343,8 +8343,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8343
8343
  | Properties | Type | Nullable | Description |
8344
8344
  | ---------- | ---- | -------- | ----------- |
8345
8345
  | key | string | no | |
8346
- | header | string | no | |
8347
8346
  | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8347
+ | header | string | no | |
8348
8348
  | display_type | string | no | |
8349
8349
 
8350
8350
  ---
@@ -8363,25 +8363,27 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8363
8363
 
8364
8364
 
8365
8365
 
8366
- #### [CompanyDetail](#CompanyDetail)
8366
+ #### [ProductStockPrice](#ProductStockPrice)
8367
8367
 
8368
8368
  | Properties | Type | Nullable | Description |
8369
8369
  | ---------- | ---- | -------- | ----------- |
8370
- | name | string | no | |
8371
- | id | number | no | |
8370
+ | marked | number | no | |
8371
+ | currency | string | no | |
8372
+ | effective | number | no | |
8372
8373
 
8373
8374
  ---
8374
8375
 
8375
8376
 
8376
8377
 
8377
8378
 
8378
- #### [ProductStockPrice](#ProductStockPrice)
8379
+ #### [StoreDetail](#StoreDetail)
8379
8380
 
8380
8381
  | Properties | Type | Nullable | Description |
8381
8382
  | ---------- | ---- | -------- | ----------- |
8382
- | currency | string | no | |
8383
- | marked | number | no | |
8384
- | effective | number | no | |
8383
+ | id | number | no | |
8384
+ | name | string | no | |
8385
+ | code | string | no | |
8386
+ | city | string | no | |
8385
8387
 
8386
8388
  ---
8387
8389
 
@@ -8393,22 +8395,20 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8393
8395
  | Properties | Type | Nullable | Description |
8394
8396
  | ---------- | ---- | -------- | ----------- |
8395
8397
  | name | string | no | |
8396
- | count | number | no | |
8397
8398
  | uid | number | no | |
8399
+ | count | number | no | |
8398
8400
 
8399
8401
  ---
8400
8402
 
8401
8403
 
8402
8404
 
8403
8405
 
8404
- #### [StoreDetail](#StoreDetail)
8406
+ #### [CompanyDetail](#CompanyDetail)
8405
8407
 
8406
8408
  | Properties | Type | Nullable | Description |
8407
8409
  | ---------- | ---- | -------- | ----------- |
8408
- | name | string | no | |
8409
- | code | string | no | |
8410
- | city | string | no | |
8411
8410
  | id | number | no | |
8411
+ | name | string | no | |
8412
8412
 
8413
8413
  ---
8414
8414
 
@@ -8419,15 +8419,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8419
8419
 
8420
8420
  | Properties | Type | Nullable | Description |
8421
8421
  | ---------- | ---- | -------- | ----------- |
8422
- | company | [CompanyDetail](#CompanyDetail) | no | |
8423
- | price | [ProductStockPrice](#ProductStockPrice) | no | |
8424
- | identifier | string | no | |
8425
- | item_id | number | no | |
8426
- | uid | string | no | |
8427
- | seller | [Seller](#Seller) | no | |
8428
8422
  | quantity | number | no | |
8429
8423
  | size | string | no | |
8424
+ | uid | string | no | |
8425
+ | price | [ProductStockPrice](#ProductStockPrice) | no | |
8426
+ | identifier | string | no | |
8430
8427
  | store | [StoreDetail](#StoreDetail) | no | |
8428
+ | seller | [Seller](#Seller) | no | |
8429
+ | item_id | number | no | |
8430
+ | company | [CompanyDetail](#CompanyDetail) | no | |
8431
8431
 
8432
8432
  ---
8433
8433
 
@@ -8449,13 +8449,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8449
8449
 
8450
8450
  | Properties | Type | Nullable | Description |
8451
8451
  | ---------- | ---- | -------- | ----------- |
8452
- | item_total | number | no | |
8453
- | current | number | no | |
8454
8452
  | has_previous | boolean | no | |
8455
- | has_next | boolean | no | |
8453
+ | size | number | no | |
8454
+ | current | number | no | |
8455
+ | item_total | number | no | |
8456
8456
  | type | string | yes | |
8457
+ | has_next | boolean | no | |
8457
8458
  | next_id | string | no | |
8458
- | size | number | no | |
8459
8459
 
8460
8460
  ---
8461
8461
 
@@ -8466,30 +8466,21 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8466
8466
 
8467
8467
  | Properties | Type | Nullable | Description |
8468
8468
  | ---------- | ---- | -------- | ----------- |
8469
- | page | [Page](#Page) | yes | |
8470
8469
  | items | [[ProductStockStatusItem](#ProductStockStatusItem)] | no | |
8470
+ | page | [Page](#Page) | yes | |
8471
8471
 
8472
8472
  ---
8473
8473
 
8474
8474
 
8475
8475
 
8476
8476
 
8477
- #### [ProductFiltersValue](#ProductFiltersValue)
8477
+ #### [ProductSortOn](#ProductSortOn)
8478
8478
 
8479
8479
  | Properties | Type | Nullable | Description |
8480
8480
  | ---------- | ---- | -------- | ----------- |
8481
- | currency_symbol | string | no | |
8482
- | count | number | no | |
8483
8481
  | value | string | no | |
8484
- | selected_min | number | no | |
8485
- | display_format | string | no | |
8486
- | max | number | no | |
8487
- | display | string | yes | |
8488
- | is_selected | boolean | yes | |
8489
- | query_format | string | no | |
8490
- | min | number | no | |
8491
- | currency_code | string | no | |
8492
- | selected_max | number | no | |
8482
+ | name | string | no | |
8483
+ | is_selected | boolean | no | |
8493
8484
 
8494
8485
  ---
8495
8486
 
@@ -8510,25 +8501,34 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8510
8501
 
8511
8502
 
8512
8503
 
8513
- #### [ProductFilters](#ProductFilters)
8504
+ #### [ProductFiltersValue](#ProductFiltersValue)
8514
8505
 
8515
8506
  | Properties | Type | Nullable | Description |
8516
8507
  | ---------- | ---- | -------- | ----------- |
8517
- | values | [[ProductFiltersValue](#ProductFiltersValue)] | yes | |
8518
- | key | [ProductFiltersKey](#ProductFiltersKey) | yes | |
8508
+ | is_selected | boolean | yes | |
8509
+ | query_format | string | no | |
8510
+ | count | number | no | |
8511
+ | selected_min | number | no | |
8512
+ | currency_symbol | string | no | |
8513
+ | selected_max | number | no | |
8514
+ | display_format | string | no | |
8515
+ | value | string | no | |
8516
+ | display | string | yes | |
8517
+ | min | number | no | |
8518
+ | max | number | no | |
8519
+ | currency_code | string | no | |
8519
8520
 
8520
8521
  ---
8521
8522
 
8522
8523
 
8523
8524
 
8524
8525
 
8525
- #### [ProductSortOn](#ProductSortOn)
8526
+ #### [ProductFilters](#ProductFilters)
8526
8527
 
8527
8528
  | Properties | Type | Nullable | Description |
8528
8529
  | ---------- | ---- | -------- | ----------- |
8529
- | name | string | no | |
8530
- | is_selected | boolean | no | |
8531
- | value | string | no | |
8530
+ | key | [ProductFiltersKey](#ProductFiltersKey) | yes | |
8531
+ | values | [[ProductFiltersValue](#ProductFiltersValue)] | yes | |
8532
8532
 
8533
8533
  ---
8534
8534
 
@@ -8539,11 +8539,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8539
8539
 
8540
8540
  | Properties | Type | Nullable | Description |
8541
8541
  | ---------- | ---- | -------- | ----------- |
8542
- | header | string | no | |
8543
- | key | string | no | |
8544
8542
  | total | number | no | |
8545
8543
  | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8544
+ | header | string | no | |
8546
8545
  | display_type | string | no | |
8546
+ | key | string | no | |
8547
8547
 
8548
8548
  ---
8549
8549
 
@@ -8554,44 +8554,44 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8554
8554
 
8555
8555
  | Properties | Type | Nullable | Description |
8556
8556
  | ---------- | ---- | -------- | ----------- |
8557
- | discount | string | no | |
8558
- | type | string | no | |
8559
- | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8560
- | image_nature | string | no | |
8561
- | sizes | [string] | no | |
8562
- | _custom_json | string | no | |
8563
- | tags | [string] | no | |
8557
+ | attributes | string | no | |
8558
+ | brand | [ProductBrand](#ProductBrand) | no | |
8559
+ | highlights | [string] | no | |
8560
+ | teaser_tag | string | no | |
8561
+ | net_quantity | [NetQuantity](#NetQuantity) | no | |
8562
+ | similars | [string] | no | |
8563
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8564
8564
  | category_map | [ProductCategoryMap](#ProductCategoryMap) | no | |
8565
- | uid | number | no | |
8565
+ | color | string | no | |
8566
+ | is_dependent | boolean | no | |
8566
8567
  | slug | string | yes | |
8567
8568
  | variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
8568
- | item_type | string | no | |
8569
- | color | string | no | |
8570
- | medias | [[Media](#Media)] | no | |
8571
- | highlights | [string] | no | |
8572
- | name | string | no | |
8573
- | tryouts | [string] | no | |
8574
- | rating_count | number | no | |
8575
- | attributes | string | no | |
8576
- | identifiers | [string] | no | |
8577
- | similars | [string] | no | |
8569
+ | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8570
+ | has_variant | boolean | no | |
8571
+ | sellable | boolean | no | |
8578
8572
  | item_code | string | no | |
8579
- | teaser_tag | string | no | |
8580
- | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8581
8573
  | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8582
- | price | [ProductListingPrice](#ProductListingPrice) | no | |
8583
- | brand | [ProductBrand](#ProductBrand) | no | |
8584
- | product_online_date | string | no | |
8585
- | sellable | boolean | no | |
8586
- | rating | number | no | |
8587
- | net_quantity | [NetQuantity](#NetQuantity) | no | |
8574
+ | medias | [[Media](#Media)] | no | |
8588
8575
  | categories | [[ProductBrand](#ProductBrand)] | no | |
8589
- | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8590
- | short_description | string | no | |
8591
- | is_dependent | boolean | no | |
8592
- | has_variant | boolean | no | |
8593
- | action | [ProductListingAction](#ProductListingAction) | no | |
8576
+ | identifiers | [string] | no | |
8577
+ | tags | [string] | no | |
8578
+ | rating | number | no | |
8579
+ | type | string | no | |
8580
+ | rating_count | number | no | |
8594
8581
  | description | string | no | |
8582
+ | discount | string | no | |
8583
+ | short_description | string | no | |
8584
+ | _custom_json | string | no | |
8585
+ | uid | number | no | |
8586
+ | image_nature | string | no | |
8587
+ | price | [ProductListingPrice](#ProductListingPrice) | no | |
8588
+ | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8589
+ | sizes | [string] | no | |
8590
+ | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8591
+ | item_type | string | no | |
8592
+ | name | string | no | |
8593
+ | tryouts | [string] | no | |
8594
+ | product_online_date | string | no | |
8595
8595
 
8596
8596
  ---
8597
8597
 
@@ -8602,10 +8602,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8602
8602
 
8603
8603
  | Properties | Type | Nullable | Description |
8604
8604
  | ---------- | ---- | -------- | ----------- |
8605
- | filters | [[ProductFilters](#ProductFilters)] | no | |
8606
- | page | [Page](#Page) | yes | |
8607
8605
  | sort_on | [[ProductSortOn](#ProductSortOn)] | no | |
8606
+ | filters | [[ProductFilters](#ProductFilters)] | no | |
8608
8607
  | items | [[ProductListingDetail](#ProductListingDetail)] | no | |
8608
+ | page | [Page](#Page) | yes | |
8609
8609
 
8610
8610
  ---
8611
8611
 
@@ -8628,15 +8628,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8628
8628
 
8629
8629
  | Properties | Type | Nullable | Description |
8630
8630
  | ---------- | ---- | -------- | ----------- |
8631
- | slug | string | no | |
8631
+ | description | string | no | |
8632
8632
  | discount | string | no | |
8633
- | logo | [Media](#Media) | no | |
8634
- | banners | [ImageUrls](#ImageUrls) | no | |
8635
8633
  | departments | [string] | no | |
8636
- | name | string | no | |
8637
- | uid | number | no | |
8638
8634
  | action | [ProductListingAction](#ProductListingAction) | no | |
8639
- | description | string | no | |
8635
+ | uid | number | no | |
8636
+ | banners | [ImageUrls](#ImageUrls) | no | |
8637
+ | name | string | no | |
8638
+ | logo | [Media](#Media) | no | |
8639
+ | slug | string | no | |
8640
8640
 
8641
8641
  ---
8642
8642
 
@@ -8647,8 +8647,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8647
8647
 
8648
8648
  | Properties | Type | Nullable | Description |
8649
8649
  | ---------- | ---- | -------- | ----------- |
8650
- | page | [Page](#Page) | yes | |
8651
8650
  | items | [[BrandItem](#BrandItem)] | no | |
8651
+ | page | [Page](#Page) | yes | |
8652
8652
 
8653
8653
  ---
8654
8654
 
@@ -8659,12 +8659,12 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8659
8659
 
8660
8660
  | Properties | Type | Nullable | Description |
8661
8661
  | ---------- | ---- | -------- | ----------- |
8662
- | logo | [Media](#Media) | no | |
8663
- | banners | [ImageUrls](#ImageUrls) | no | |
8664
- | name | string | no | |
8662
+ | description | string | no | |
8665
8663
  | _custom_json | string | no | |
8664
+ | banners | [ImageUrls](#ImageUrls) | no | |
8666
8665
  | uid | number | no | |
8667
- | description | string | no | |
8666
+ | name | string | no | |
8667
+ | logo | [Media](#Media) | no | |
8668
8668
 
8669
8669
  ---
8670
8670
 
@@ -8675,8 +8675,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8675
8675
 
8676
8676
  | Properties | Type | Nullable | Description |
8677
8677
  | ---------- | ---- | -------- | ----------- |
8678
- | slug | string | no | |
8679
8678
  | uid | number | no | |
8679
+ | slug | string | no | |
8680
8680
 
8681
8681
  ---
8682
8682
 
@@ -8687,13 +8687,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8687
8687
 
8688
8688
  | Properties | Type | Nullable | Description |
8689
8689
  | ---------- | ---- | -------- | ----------- |
8690
- | slug | string | no | |
8691
8690
  | childs | [string] | no | |
8692
- | banners | [ImageUrls](#ImageUrls) | no | |
8693
- | name | string | no | |
8694
8691
  | _custom_json | string | no | |
8695
8692
  | uid | number | no | |
8693
+ | banners | [ImageUrls](#ImageUrls) | no | |
8696
8694
  | action | [ProductListingAction](#ProductListingAction) | no | |
8695
+ | name | string | no | |
8696
+ | slug | string | no | |
8697
8697
 
8698
8698
  ---
8699
8699
 
@@ -8704,13 +8704,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8704
8704
 
8705
8705
  | Properties | Type | Nullable | Description |
8706
8706
  | ---------- | ---- | -------- | ----------- |
8707
- | slug | string | no | |
8708
8707
  | childs | [[ThirdLevelChild](#ThirdLevelChild)] | no | |
8709
- | banners | [ImageUrls](#ImageUrls) | no | |
8710
- | name | string | no | |
8711
8708
  | _custom_json | string | no | |
8712
8709
  | uid | number | no | |
8710
+ | banners | [ImageUrls](#ImageUrls) | no | |
8713
8711
  | action | [ProductListingAction](#ProductListingAction) | no | |
8712
+ | name | string | no | |
8713
+ | slug | string | no | |
8714
8714
 
8715
8715
  ---
8716
8716
 
@@ -8721,13 +8721,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8721
8721
 
8722
8722
  | Properties | Type | Nullable | Description |
8723
8723
  | ---------- | ---- | -------- | ----------- |
8724
- | slug | string | no | |
8725
8724
  | childs | [[SecondLevelChild](#SecondLevelChild)] | no | |
8726
- | banners | [ImageUrls](#ImageUrls) | no | |
8727
- | name | string | no | |
8728
8725
  | _custom_json | string | no | |
8729
8726
  | uid | number | no | |
8727
+ | banners | [ImageUrls](#ImageUrls) | no | |
8730
8728
  | action | [ProductListingAction](#ProductListingAction) | no | |
8729
+ | name | string | no | |
8730
+ | slug | string | no | |
8731
8731
 
8732
8732
  ---
8733
8733
 
@@ -8750,12 +8750,12 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8750
8750
 
8751
8751
  | Properties | Type | Nullable | Description |
8752
8752
  | ---------- | ---- | -------- | ----------- |
8753
- | slug | string | yes | |
8754
8753
  | childs | [[Child](#Child)] | no | |
8754
+ | action | [ProductListingAction](#ProductListingAction) | yes | |
8755
+ | uid | number | yes | |
8755
8756
  | banners | [CategoryBanner](#CategoryBanner) | yes | |
8756
8757
  | name | string | yes | |
8757
- | uid | number | yes | |
8758
- | action | [ProductListingAction](#ProductListingAction) | yes | |
8758
+ | slug | string | yes | |
8759
8759
 
8760
8760
  ---
8761
8761
 
@@ -8766,8 +8766,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8766
8766
 
8767
8767
  | Properties | Type | Nullable | Description |
8768
8768
  | ---------- | ---- | -------- | ----------- |
8769
- | department | string | yes | |
8770
8769
  | items | [[CategoryItems](#CategoryItems)] | no | |
8770
+ | department | string | yes | |
8771
8771
 
8772
8772
  ---
8773
8773
 
@@ -8790,11 +8790,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8790
8790
 
8791
8791
  | Properties | Type | Nullable | Description |
8792
8792
  | ---------- | ---- | -------- | ----------- |
8793
- | logo | [Media](#Media) | no | |
8794
- | banners | [ImageUrls](#ImageUrls) | no | |
8795
- | name | string | no | |
8796
8793
  | _custom_json | string | no | |
8794
+ | banners | [ImageUrls](#ImageUrls) | no | |
8797
8795
  | uid | number | no | |
8796
+ | name | string | no | |
8797
+ | logo | [Media](#Media) | no | |
8798
8798
 
8799
8799
  ---
8800
8800
 
@@ -8805,9 +8805,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8805
8805
 
8806
8806
  | Properties | Type | Nullable | Description |
8807
8807
  | ---------- | ---- | -------- | ----------- |
8808
- | page | [Page](#Page) | yes | |
8809
8808
  | message | string | no | |
8810
8809
  | items | [[ProductListingDetail](#ProductListingDetail)] | no | |
8810
+ | page | [Page](#Page) | yes | |
8811
8811
 
8812
8812
  ---
8813
8813
 
@@ -8818,11 +8818,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8818
8818
 
8819
8819
  | Properties | Type | Nullable | Description |
8820
8820
  | ---------- | ---- | -------- | ----------- |
8821
- | slug | string | no | |
8822
- | logo | [Media](#Media) | no | |
8823
8821
  | priority_order | number | no | |
8824
- | name | string | no | |
8825
8822
  | uid | number | no | |
8823
+ | name | string | no | |
8824
+ | logo | [Media](#Media) | no | |
8825
+ | slug | string | no | |
8826
8826
 
8827
8827
  ---
8828
8828
 
@@ -8844,11 +8844,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8844
8844
 
8845
8845
  | Properties | Type | Nullable | Description |
8846
8846
  | ---------- | ---- | -------- | ----------- |
8847
- | logo | [Media](#Media) | no | |
8847
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8848
+ | _custom_json | string | no | |
8848
8849
  | type | string | no | |
8849
8850
  | display | string | no | |
8850
- | _custom_json | string | no | |
8851
- | action | [ProductListingAction](#ProductListingAction) | no | |
8851
+ | logo | [Media](#Media) | no | |
8852
8852
 
8853
8853
  ---
8854
8854
 
@@ -8871,8 +8871,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8871
8871
  | Properties | Type | Nullable | Description |
8872
8872
  | ---------- | ---- | -------- | ----------- |
8873
8873
  | name | string | no | |
8874
- | display | string | no | |
8875
8874
  | is_selected | boolean | no | |
8875
+ | display | string | no | |
8876
8876
 
8877
8877
  ---
8878
8878
 
@@ -8884,8 +8884,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8884
8884
  | Properties | Type | Nullable | Description |
8885
8885
  | ---------- | ---- | -------- | ----------- |
8886
8886
  | name | string | no | |
8887
- | display | string | no | |
8888
8887
  | is_selected | boolean | no | |
8888
+ | display | string | no | |
8889
8889
 
8890
8890
  ---
8891
8891
 
@@ -8908,9 +8908,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8908
8908
 
8909
8909
  | Properties | Type | Nullable | Description |
8910
8910
  | ---------- | ---- | -------- | ----------- |
8911
+ | value | [any] | yes | |
8911
8912
  | op | string | yes | |
8912
8913
  | attribute | string | yes | |
8913
- | value | [any] | yes | |
8914
8914
 
8915
8915
  ---
8916
8916
 
@@ -8921,28 +8921,28 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8921
8921
 
8922
8922
  | Properties | Type | Nullable | Description |
8923
8923
  | ---------- | ---- | -------- | ----------- |
8924
- | type | string | no | |
8925
- | priority | number | no | |
8926
- | allow_facets | boolean | no | |
8927
- | _custom_json | string | no | |
8928
- | uid | string | no | |
8924
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8925
+ | banners | [ImageUrls](#ImageUrls) | no | |
8929
8926
  | slug | string | no | |
8930
- | meta | string | no | |
8931
- | tag | [string] | no | |
8932
- | logo | [Media](#Media) | no | |
8933
8927
  | sort_on | string | no | |
8934
- | cron | string | no | |
8935
- | _schedule | string | no | |
8936
- | name | string | no | |
8937
- | app_id | string | no | |
8938
8928
  | visible_facets_keys | [string] | no | |
8939
- | badge | string | no | |
8940
- | allow_sort | boolean | no | |
8941
- | banners | [ImageUrls](#ImageUrls) | no | |
8942
- | is_active | boolean | no | |
8943
- | action | [ProductListingAction](#ProductListingAction) | no | |
8929
+ | cron | string | no | |
8944
8930
  | query | [[CollectionQuery](#CollectionQuery)] | no | |
8931
+ | meta | string | no | |
8932
+ | is_active | boolean | no | |
8933
+ | app_id | string | no | |
8934
+ | type | string | no | |
8935
+ | allow_facets | boolean | no | |
8936
+ | _schedule | string | no | |
8937
+ | tag | [string] | no | |
8938
+ | logo | [Media](#Media) | no | |
8945
8939
  | description | string | no | |
8940
+ | allow_sort | boolean | no | |
8941
+ | priority | number | no | |
8942
+ | _custom_json | string | no | |
8943
+ | uid | string | no | |
8944
+ | badge | string | no | |
8945
+ | name | string | no | |
8946
8946
 
8947
8947
  ---
8948
8948
 
@@ -8954,8 +8954,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8954
8954
  | Properties | Type | Nullable | Description |
8955
8955
  | ---------- | ---- | -------- | ----------- |
8956
8956
  | filters | [CollectionListingFilter](#CollectionListingFilter) | no | |
8957
- | page | [Page](#Page) | yes | |
8958
8957
  | items | [[GetCollectionDetailNest](#GetCollectionDetailNest)] | no | |
8958
+ | page | [Page](#Page) | yes | |
8959
8959
 
8960
8960
  ---
8961
8961
 
@@ -8966,26 +8966,26 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8966
8966
 
8967
8967
  | Properties | Type | Nullable | Description |
8968
8968
  | ---------- | ---- | -------- | ----------- |
8969
+ | banners | [ImageUrls](#ImageUrls) | no | |
8970
+ | slug | string | no | |
8971
+ | sort_on | string | no | |
8972
+ | visible_facets_keys | [string] | no | |
8973
+ | cron | string | no | |
8974
+ | query | [[CollectionQuery](#CollectionQuery)] | no | |
8975
+ | meta | string | no | |
8976
+ | is_active | boolean | no | |
8977
+ | app_id | string | no | |
8969
8978
  | type | string | no | |
8970
- | priority | number | no | |
8971
8979
  | allow_facets | boolean | no | |
8972
- | _custom_json | string | no | |
8973
- | slug | string | no | |
8974
- | meta | string | no | |
8980
+ | _schedule | string | no | |
8975
8981
  | tag | [string] | no | |
8976
8982
  | logo | [Media](#Media) | no | |
8977
- | sort_on | string | no | |
8978
- | cron | string | no | |
8979
- | _schedule | string | no | |
8980
- | name | string | no | |
8981
- | app_id | string | no | |
8982
- | visible_facets_keys | [string] | no | |
8983
- | badge | string | no | |
8984
- | allow_sort | boolean | no | |
8985
- | banners | [ImageUrls](#ImageUrls) | no | |
8986
- | is_active | boolean | no | |
8987
- | query | [[CollectionQuery](#CollectionQuery)] | no | |
8988
8983
  | description | string | no | |
8984
+ | allow_sort | boolean | no | |
8985
+ | priority | number | no | |
8986
+ | _custom_json | string | no | |
8987
+ | badge | string | no | |
8988
+ | name | string | no | |
8989
8989
 
8990
8990
  ---
8991
8991
 
@@ -8996,8 +8996,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8996
8996
 
8997
8997
  | Properties | Type | Nullable | Description |
8998
8998
  | ---------- | ---- | -------- | ----------- |
8999
- | page | [Page](#Page) | yes | |
9000
8999
  | items | [[ProductListingDetail](#ProductListingDetail)] | yes | |
9000
+ | page | [Page](#Page) | yes | |
9001
9001
 
9002
9002
  ---
9003
9003
 
@@ -9008,8 +9008,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9008
9008
 
9009
9009
  | Properties | Type | Nullable | Description |
9010
9010
  | ---------- | ---- | -------- | ----------- |
9011
- | message | string | yes | |
9012
9011
  | id | string | yes | |
9012
+ | message | string | yes | |
9013
9013
 
9014
9014
  ---
9015
9015
 
@@ -9031,9 +9031,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9031
9031
 
9032
9032
  | Properties | Type | Nullable | Description |
9033
9033
  | ---------- | ---- | -------- | ----------- |
9034
- | products | [number] | no | |
9035
- | brands | [number] | no | |
9036
9034
  | collections | [number] | no | |
9035
+ | brands | [number] | no | |
9036
+ | products | [number] | no | |
9037
9037
 
9038
9038
  ---
9039
9039
 
@@ -9067,16 +9067,16 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9067
9067
 
9068
9068
  | Properties | Type | Nullable | Description |
9069
9069
  | ---------- | ---- | -------- | ----------- |
9070
- | pincode | number | no | |
9071
- | city | string | no | |
9072
- | address | string | no | |
9073
- | store_email | string | no | |
9074
- | name | string | no | |
9075
9070
  | store_code | string | no | |
9071
+ | address | string | no | |
9076
9072
  | state | string | no | |
9077
9073
  | uid | number | no | |
9078
- | lat_long | [LatLong](#LatLong) | no | |
9074
+ | city | string | no | |
9075
+ | name | string | no | |
9076
+ | store_email | string | no | |
9079
9077
  | country | string | no | |
9078
+ | pincode | number | no | |
9079
+ | lat_long | [LatLong](#LatLong) | no | |
9080
9080
 
9081
9081
  ---
9082
9082
 
@@ -9087,8 +9087,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9087
9087
 
9088
9088
  | Properties | Type | Nullable | Description |
9089
9089
  | ---------- | ---- | -------- | ----------- |
9090
- | page | [Page](#Page) | yes | |
9091
9090
  | items | [[Store](#Store)] | yes | |
9091
+ | page | [Page](#Page) | yes | |
9092
9092
 
9093
9093
  ---
9094
9094
 
@@ -9099,11 +9099,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9099
9099
 
9100
9100
  | Properties | Type | Nullable | Description |
9101
9101
  | ---------- | ---- | -------- | ----------- |
9102
- | slug | string | no | |
9103
- | logo | string | no | |
9104
9102
  | priority_order | number | no | |
9105
- | name | string | no | |
9106
9103
  | uid | number | no | |
9104
+ | name | string | no | |
9105
+ | logo | string | no | |
9106
+ | slug | string | no | |
9107
9107
 
9108
9108
  ---
9109
9109
 
@@ -9114,8 +9114,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9114
9114
 
9115
9115
  | Properties | Type | Nullable | Description |
9116
9116
  | ---------- | ---- | -------- | ----------- |
9117
- | number | string | yes | |
9118
9117
  | country_code | number | yes | |
9118
+ | number | string | yes | |
9119
9119
 
9120
9120
  ---
9121
9121
 
@@ -9126,15 +9126,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9126
9126
 
9127
9127
  | Properties | Type | Nullable | Description |
9128
9128
  | ---------- | ---- | -------- | ----------- |
9129
+ | address1 | string | no | |
9129
9130
  | pincode | number | no | |
9130
- | city | string | no | |
9131
9131
  | longitude | number | no | |
9132
- | latitude | number | no | |
9133
- | address2 | string | no | |
9134
9132
  | state | string | no | |
9133
+ | city | string | no | |
9135
9134
  | country | string | no | |
9136
9135
  | landmark | string | no | |
9137
- | address1 | string | no | |
9136
+ | latitude | number | no | |
9137
+ | address2 | string | no | |
9138
9138
 
9139
9139
  ---
9140
9140
 
@@ -9146,9 +9146,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9146
9146
  | Properties | Type | Nullable | Description |
9147
9147
  | ---------- | ---- | -------- | ----------- |
9148
9148
  | name | string | no | |
9149
- | business_type | string | no | |
9150
- | company_type | string | no | |
9151
9149
  | uid | number | no | |
9150
+ | company_type | string | no | |
9151
+ | business_type | string | no | |
9152
9152
 
9153
9153
  ---
9154
9154
 
@@ -9173,10 +9173,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9173
9173
  | Properties | Type | Nullable | Description |
9174
9174
  | ---------- | ---- | -------- | ----------- |
9175
9175
  | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9176
- | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9177
9176
  | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9178
- | name | string | no | |
9179
9177
  | uid | number | no | |
9178
+ | name | string | no | |
9179
+ | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9180
9180
  | company | [CompanyStore](#CompanyStore) | no | |
9181
9181
  | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9182
9182
 
@@ -9190,8 +9190,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9190
9190
  | Properties | Type | Nullable | Description |
9191
9191
  | ---------- | ---- | -------- | ----------- |
9192
9192
  | filters | [[StoreDepartments](#StoreDepartments)] | no | |
9193
- | page | [Page](#Page) | no | |
9194
9193
  | items | [[AppStore](#AppStore)] | no | |
9194
+ | page | [Page](#Page) | no | |
9195
9195
 
9196
9196
  ---
9197
9197
 
@@ -9202,8 +9202,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9202
9202
 
9203
9203
  | Properties | Type | Nullable | Description |
9204
9204
  | ---------- | ---- | -------- | ----------- |
9205
- | hour | number | no | |
9206
9205
  | minute | number | no | |
9206
+ | hour | number | no | |
9207
9207
 
9208
9208
  ---
9209
9209
 
@@ -9215,9 +9215,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9215
9215
  | Properties | Type | Nullable | Description |
9216
9216
  | ---------- | ---- | -------- | ----------- |
9217
9217
  | weekday | string | no | |
9218
+ | open | boolean | no | |
9218
9219
  | opening | [Time](#Time) | no | |
9219
9220
  | closing | [Time](#Time) | no | |
9220
- | open | boolean | no | |
9221
9221
 
9222
9222
  ---
9223
9223
 
@@ -9229,12 +9229,12 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9229
9229
  | Properties | Type | Nullable | Description |
9230
9230
  | ---------- | ---- | -------- | ----------- |
9231
9231
  | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9232
- | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9233
9232
  | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9234
- | name | string | no | |
9235
9233
  | _custom_json | string | no | |
9236
- | timing | [[StoreTiming](#StoreTiming)] | no | |
9237
9234
  | uid | number | no | |
9235
+ | timing | [[StoreTiming](#StoreTiming)] | no | |
9236
+ | name | string | no | |
9237
+ | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9238
9238
  | company | [CompanyStore](#CompanyStore) | no | |
9239
9239
  | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9240
9240
 
@@ -9249,8 +9249,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9249
9249
  | ---------- | ---- | -------- | ----------- |
9250
9250
  | super_user | boolean | no | |
9251
9251
  | user_id | string | yes | |
9252
- | username | string | yes | |
9253
9252
  | contact | string | no | |
9253
+ | username | string | yes | |
9254
9254
 
9255
9255
  ---
9256
9256
 
@@ -9261,27 +9261,27 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9261
9261
 
9262
9262
  | Properties | Type | Nullable | Description |
9263
9263
  | ---------- | ---- | -------- | ----------- |
9264
- | image_nature | any | no | |
9265
- | brand_uid | number | no | |
9266
- | images | [any] | no | |
9264
+ | attributes | string | no | |
9267
9265
  | is_set | boolean | no | |
9268
- | slug | any | no | |
9269
9266
  | highlights | [any] | no | |
9270
- | country_of_origin | any | no | |
9271
- | name | any | no | |
9272
9267
  | identifier | string | no | |
9273
- | rating_count | number | no | |
9274
- | attributes | string | no | |
9275
- | item_code | any | no | |
9276
- | media | [string] | no | |
9277
- | grouped_attributes | string | no | |
9268
+ | slug | any | no | |
9269
+ | images | [any] | no | |
9278
9270
  | hsn_code | number | no | |
9279
- | rating | number | no | |
9280
- | short_description | any | no | |
9281
9271
  | has_variant | boolean | no | |
9272
+ | brand_uid | number | no | |
9273
+ | grouped_attributes | string | no | |
9274
+ | item_code | any | no | |
9282
9275
  | template_tag | any | no | |
9283
- | out_of_stock | boolean | no | |
9276
+ | rating | number | no | |
9277
+ | country_of_origin | any | no | |
9278
+ | rating_count | number | no | |
9279
+ | media | [string] | no | |
9284
9280
  | description | any | no | |
9281
+ | out_of_stock | boolean | no | |
9282
+ | short_description | any | no | |
9283
+ | image_nature | any | no | |
9284
+ | name | any | no | |
9285
9285
 
9286
9286
  ---
9287
9287
 
@@ -9292,10 +9292,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9292
9292
 
9293
9293
  | Properties | Type | Nullable | Description |
9294
9294
  | ---------- | ---- | -------- | ----------- |
9295
- | quantity | number | no | |
9295
+ | value | any | no | |
9296
9296
  | display | any | no | |
9297
9297
  | is_available | boolean | no | |
9298
- | value | any | no | |
9298
+ | quantity | number | no | |
9299
9299
 
9300
9300
  ---
9301
9301
 
@@ -9306,8 +9306,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9306
9306
 
9307
9307
  | Properties | Type | Nullable | Description |
9308
9308
  | ---------- | ---- | -------- | ----------- |
9309
- | min_effective | number | no | |
9310
9309
  | min_marked | number | no | |
9310
+ | min_effective | number | no | |
9311
9311
  | max_marked | number | no | |
9312
9312
  | currency | any | no | |
9313
9313
  | max_effective | number | no | |
@@ -9323,12 +9323,12 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9323
9323
  | ---------- | ---- | -------- | ----------- |
9324
9324
  | max_quantity | number | yes | |
9325
9325
  | product_details | [ProductDetails](#ProductDetails) | no | |
9326
- | auto_select | boolean | no | |
9327
- | allow_remove | boolean | no | |
9328
- | min_quantity | number | no | |
9329
9326
  | sizes | [[Size](#Size)] | no | |
9327
+ | min_quantity | number | no | |
9330
9328
  | price | [ProductGroupPrice](#ProductGroupPrice) | no | |
9329
+ | allow_remove | boolean | no | |
9331
9330
  | product_uid | number | yes | |
9331
+ | auto_select | boolean | no | |
9332
9332
  | auto_add_to_cart | boolean | no | |
9333
9333
 
9334
9334
  ---
@@ -9340,23 +9340,23 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9340
9340
 
9341
9341
  | Properties | Type | Nullable | Description |
9342
9342
  | ---------- | ---- | -------- | ----------- |
9343
- | slug | any | no | |
9344
- | verified_by | [UserDetail](#UserDetail) | no | |
9345
- | company_id | number | no | |
9343
+ | choice | any | no | |
9346
9344
  | meta | string | no | |
9347
- | page_visibility | [any] | no | |
9348
- | logo | string | no | |
9349
- | created_on | string | yes | |
9350
- | modified_on | string | yes | |
9351
- | created_by | [UserDetail](#UserDetail) | no | |
9345
+ | verified_by | [UserDetail](#UserDetail) | no | |
9346
+ | is_active | boolean | no | |
9347
+ | same_store_assignment | boolean | no | |
9352
9348
  | products | [[ProductInGroup](#ProductInGroup)] | yes | |
9349
+ | created_on | string | yes | |
9350
+ | _id | any | no | |
9353
9351
  | modified_by | [UserDetail](#UserDetail) | no | |
9352
+ | created_by | [UserDetail](#UserDetail) | no | |
9353
+ | company_id | number | no | |
9354
+ | modified_on | string | yes | |
9354
9355
  | name | any | yes | |
9355
- | _id | any | no | |
9356
- | choice | any | no | |
9357
- | is_active | boolean | no | |
9356
+ | page_visibility | [any] | no | |
9357
+ | logo | string | no | |
9358
+ | slug | any | no | |
9358
9359
  | verified_on | string | no | |
9359
- | same_store_assignment | boolean | no | |
9360
9360
 
9361
9361
  ---
9362
9362
 
@@ -9378,160 +9378,160 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9378
9378
 
9379
9379
  | Properties | Type | Nullable | Description |
9380
9380
  | ---------- | ---- | -------- | ----------- |
9381
- | quantity | number | no | |
9382
9381
  | tat | number | no | |
9383
9382
  | distance | number | no | |
9384
9383
  | pincode | number | no | |
9384
+ | quantity | number | no | |
9385
9385
 
9386
9386
  ---
9387
9387
 
9388
9388
 
9389
9389
 
9390
9390
 
9391
- #### [ProductStockUnitPriceV3](#ProductStockUnitPriceV3)
9391
+ #### [ArticleAssignmentV3](#ArticleAssignmentV3)
9392
9392
 
9393
9393
  | Properties | Type | Nullable | Description |
9394
9394
  | ---------- | ---- | -------- | ----------- |
9395
- | currency_symbol | string | no | |
9396
- | currency_code | string | no | |
9397
- | price | number | no | |
9398
- | unit | string | no | |
9395
+ | strategy | string | no | |
9396
+ | level | string | no | |
9399
9397
 
9400
9398
  ---
9401
9399
 
9402
9400
 
9403
9401
 
9404
9402
 
9405
- #### [StoreV3](#StoreV3)
9403
+ #### [ReturnConfigSchemaV3](#ReturnConfigSchemaV3)
9406
9404
 
9407
9405
  | Properties | Type | Nullable | Description |
9408
9406
  | ---------- | ---- | -------- | ----------- |
9409
- | name | string | no | |
9410
- | count | number | no | |
9411
- | uid | number | no | |
9407
+ | time | number | no | |
9408
+ | unit | string | no | |
9409
+ | returnable | boolean | no | |
9412
9410
 
9413
9411
  ---
9414
9412
 
9415
9413
 
9416
9414
 
9417
9415
 
9418
- #### [ProductSetDistributionSizeV3](#ProductSetDistributionSizeV3)
9416
+ #### [DetailsSchemaV3](#DetailsSchemaV3)
9419
9417
 
9420
9418
  | Properties | Type | Nullable | Description |
9421
9419
  | ---------- | ---- | -------- | ----------- |
9422
- | size | string | no | |
9423
- | pieces | number | no | |
9420
+ | type | string | no | |
9421
+ | key | string | no | |
9422
+ | value | string | no | |
9424
9423
 
9425
9424
  ---
9426
9425
 
9427
9426
 
9428
9427
 
9429
9428
 
9430
- #### [ProductSetDistributionV3](#ProductSetDistributionV3)
9429
+ #### [SellerGroupAttributes](#SellerGroupAttributes)
9431
9430
 
9432
9431
  | Properties | Type | Nullable | Description |
9433
9432
  | ---------- | ---- | -------- | ----------- |
9434
- | sizes | [[ProductSetDistributionSizeV3](#ProductSetDistributionSizeV3)] | no | |
9433
+ | details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
9434
+ | title | string | no | |
9435
9435
 
9436
9436
  ---
9437
9437
 
9438
9438
 
9439
9439
 
9440
9440
 
9441
- #### [ProductSetV3](#ProductSetV3)
9441
+ #### [StoreV3](#StoreV3)
9442
9442
 
9443
9443
  | Properties | Type | Nullable | Description |
9444
9444
  | ---------- | ---- | -------- | ----------- |
9445
- | quantity | number | no | |
9446
- | size_distribution | [ProductSetDistributionV3](#ProductSetDistributionV3) | no | |
9445
+ | name | string | no | |
9446
+ | uid | number | no | |
9447
+ | count | number | no | |
9447
9448
 
9448
9449
  ---
9449
9450
 
9450
9451
 
9451
9452
 
9452
9453
 
9453
- #### [ReturnConfigSchemaV3](#ReturnConfigSchemaV3)
9454
+ #### [ProductStockUnitPriceV3](#ProductStockUnitPriceV3)
9454
9455
 
9455
9456
  | Properties | Type | Nullable | Description |
9456
9457
  | ---------- | ---- | -------- | ----------- |
9457
- | returnable | boolean | no | |
9458
- | time | number | no | |
9459
9458
  | unit | string | no | |
9459
+ | currency_code | string | no | |
9460
+ | currency_symbol | string | no | |
9461
+ | price | number | no | |
9460
9462
 
9461
9463
  ---
9462
9464
 
9463
9465
 
9464
9466
 
9465
9467
 
9466
- #### [ProductStockPriceV3](#ProductStockPriceV3)
9468
+ #### [ProductSetDistributionSizeV3](#ProductSetDistributionSizeV3)
9467
9469
 
9468
9470
  | Properties | Type | Nullable | Description |
9469
9471
  | ---------- | ---- | -------- | ----------- |
9470
- | currency | string | no | |
9471
- | marked | number | no | |
9472
- | effective | number | no | |
9472
+ | size | string | no | |
9473
+ | pieces | number | no | |
9473
9474
 
9474
9475
  ---
9475
9476
 
9476
9477
 
9477
9478
 
9478
9479
 
9479
- #### [DetailsSchemaV3](#DetailsSchemaV3)
9480
+ #### [ProductSetDistributionV3](#ProductSetDistributionV3)
9480
9481
 
9481
9482
  | Properties | Type | Nullable | Description |
9482
9483
  | ---------- | ---- | -------- | ----------- |
9483
- | type | string | no | |
9484
- | key | string | no | |
9485
- | value | string | no | |
9484
+ | sizes | [[ProductSetDistributionSizeV3](#ProductSetDistributionSizeV3)] | no | |
9486
9485
 
9487
9486
  ---
9488
9487
 
9489
9488
 
9490
9489
 
9491
9490
 
9492
- #### [MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)
9491
+ #### [ProductSetV3](#ProductSetV3)
9493
9492
 
9494
9493
  | Properties | Type | Nullable | Description |
9495
9494
  | ---------- | ---- | -------- | ----------- |
9496
- | title | string | no | |
9497
- | details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
9495
+ | quantity | number | no | |
9496
+ | size_distribution | [ProductSetDistributionV3](#ProductSetDistributionV3) | no | |
9498
9497
 
9499
9498
  ---
9500
9499
 
9501
9500
 
9502
9501
 
9503
9502
 
9504
- #### [SellerGroupAttributes](#SellerGroupAttributes)
9503
+ #### [ProductStockPriceV3](#ProductStockPriceV3)
9505
9504
 
9506
9505
  | Properties | Type | Nullable | Description |
9507
9506
  | ---------- | ---- | -------- | ----------- |
9508
- | title | string | no | |
9509
- | details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
9507
+ | marked | number | no | |
9508
+ | currency | string | no | |
9509
+ | effective | number | no | |
9510
9510
 
9511
9511
  ---
9512
9512
 
9513
9513
 
9514
9514
 
9515
9515
 
9516
- #### [ArticleAssignmentV3](#ArticleAssignmentV3)
9516
+ #### [SellerV3](#SellerV3)
9517
9517
 
9518
9518
  | Properties | Type | Nullable | Description |
9519
9519
  | ---------- | ---- | -------- | ----------- |
9520
- | strategy | string | no | |
9521
- | level | string | no | |
9520
+ | name | string | no | |
9521
+ | uid | number | no | |
9522
+ | count | number | no | |
9522
9523
 
9523
9524
  ---
9524
9525
 
9525
9526
 
9526
9527
 
9527
9528
 
9528
- #### [SellerV3](#SellerV3)
9529
+ #### [MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)
9529
9530
 
9530
9531
  | Properties | Type | Nullable | Description |
9531
9532
  | ---------- | ---- | -------- | ----------- |
9532
- | name | string | no | |
9533
- | count | number | no | |
9534
- | uid | number | no | |
9533
+ | details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
9534
+ | title | string | no | |
9535
9535
 
9536
9536
  ---
9537
9537
 
@@ -9543,26 +9543,26 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9543
9543
  | Properties | Type | Nullable | Description |
9544
9544
  | ---------- | ---- | -------- | ----------- |
9545
9545
  | strategy_wise_listing | [[StrategyWiseListingSchemaV3](#StrategyWiseListingSchemaV3)] | no | |
9546
- | discount | string | no | |
9547
- | price_per_unit | [ProductStockUnitPriceV3](#ProductStockUnitPriceV3) | no | |
9546
+ | is_gift | boolean | no | |
9547
+ | article_assignment | [ArticleAssignmentV3](#ArticleAssignmentV3) | no | |
9548
+ | return_config | [ReturnConfigSchemaV3](#ReturnConfigSchemaV3) | no | |
9549
+ | grouped_attributes | [[SellerGroupAttributes](#SellerGroupAttributes)] | no | |
9548
9550
  | store | [StoreV3](#StoreV3) | no | |
9551
+ | article_id | string | no | |
9552
+ | price_per_unit | [ProductStockUnitPriceV3](#ProductStockUnitPriceV3) | no | |
9549
9553
  | set | [ProductSetV3](#ProductSetV3) | no | |
9550
- | item_type | string | no | |
9551
9554
  | is_cod | boolean | no | |
9552
- | return_config | [ReturnConfigSchemaV3](#ReturnConfigSchemaV3) | no | |
9555
+ | seller_count | number | no | |
9553
9556
  | special_badge | string | no | |
9554
- | long_lat | [number] | no | |
9557
+ | quantity | number | no | |
9558
+ | discount | string | no | |
9555
9559
  | price_per_piece | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
9556
- | marketplace_attributes | [[MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)] | no | |
9557
- | grouped_attributes | [[SellerGroupAttributes](#SellerGroupAttributes)] | no | |
9558
9560
  | price | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
9559
- | article_assignment | [ArticleAssignmentV3](#ArticleAssignmentV3) | no | |
9561
+ | item_type | string | no | |
9560
9562
  | seller | [SellerV3](#SellerV3) | no | |
9561
- | quantity | number | no | |
9563
+ | long_lat | [number] | no | |
9562
9564
  | pincode | number | no | |
9563
- | article_id | string | no | |
9564
- | is_gift | boolean | no | |
9565
- | seller_count | number | no | |
9565
+ | marketplace_attributes | [[MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)] | no | |
9566
9566
 
9567
9567
  ---
9568
9568
 
@@ -9573,9 +9573,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9573
9573
 
9574
9574
  | Properties | Type | Nullable | Description |
9575
9575
  | ---------- | ---- | -------- | ----------- |
9576
+ | value | string | no | |
9576
9577
  | name | string | no | |
9577
9578
  | is_selected | boolean | no | |
9578
- | value | string | no | |
9579
9579
 
9580
9580
  ---
9581
9581
 
@@ -9586,9 +9586,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9586
9586
 
9587
9587
  | Properties | Type | Nullable | Description |
9588
9588
  | ---------- | ---- | -------- | ----------- |
9589
- | page | [Page](#Page) | yes | |
9590
9589
  | sort_on | [[ProductSizeSellerFilterSchemaV3](#ProductSizeSellerFilterSchemaV3)] | no | |
9591
9590
  | items | [[ProductSizePriceResponseV3](#ProductSizePriceResponseV3)] | no | |
9591
+ | page | [Page](#Page) | yes | |
9592
9592
 
9593
9593
  ---
9594
9594