Skip to content

Commit

Permalink
[Auto Generated] 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jigardafda committed Sep 8, 2023
1 parent e8da5bc commit 6d4e1b6
Show file tree
Hide file tree
Showing 4 changed files with 508 additions and 10 deletions.
96 changes: 89 additions & 7 deletions documentation/platform/CATALOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14336,7 +14336,7 @@ Products are the core resource of an application. Products can be associated by



[ProductListingResponse](#ProductListingResponse)
[RawProductListingResponse](#RawProductListingResponse)

The Product object. See example below or refer `ApplicationProductListingResponseDatabasePowered` for details.

Expand Down Expand Up @@ -14486,12 +14486,10 @@ The Product object. See example below or refer `ApplicationProductListingRespons
"uid": 13
},
"images": [
{
"aspect_ratio": "16:25",
"aspect_ratio_f": 0.64,
"url": "https://hdn-1.addsale.com/x0/products/pictures/item/free/135x0/dcizgsG_Y-Tv-Set.png",
"secure_url": "https://hdn-1.addsale.com/x0/products/pictures/item/free/135x0/dcizgsG_Y-Tv-Set.png"
}
"https://cdn.fynd.com/v2/falling-surf-7c8bb8/fyprod/wrkr/products/pictures/item/free/original/5050407896640/8hn0-cPlN0-1.jpg",
"https://cdn.fynd.com/v2/falling-surf-7c8bb8/fyprod/wrkr/products/pictures/item/free/original/5050407896640/1ODGjR9NLY-2.jpg",
"https://cdn.fynd.com/v2/falling-surf-7c8bb8/fyprod/wrkr/products/pictures/item/free/original/5050407896640/mJqqfEQilY-3.jpg",
"https://cdn.fynd.com/v2/falling-surf-7c8bb8/fyprod/wrkr/products/pictures/item/free/original/5050407896640/htM1r1aHwa-4.jpg"
],
"price": {
"marked": {
Expand Down Expand Up @@ -18338,6 +18336,90 @@ Returns a success response



#### [RawProduct](#RawProduct)

| Properties | Type | Nullable | Description |
| ---------- | ---- | -------- | ----------- |
| customJson | HashMap<String,Object>? | yes | |
| allCompanyIds | ArrayList<Integer>? | yes | |
| allIdentifiers | ArrayList<String>? | yes | |
| allSizes | ArrayList<HashMap<String,Object>>? | yes | |
| attributes | HashMap<String,Object>? | yes | |
| brand | [Brand](#Brand)? | yes | |
| brandUid | Integer? | yes | |
| category | HashMap<String,Object>? | yes | |
| categorySlug | String? | yes | |
| categoryUid | Integer? | yes | |
| color | String? | yes | |
| companyId | Integer? | yes | |
| countryOfOrigin | String? | yes | |
| createdBy | HashMap<String,Object>? | yes | |
| createdOn | String? | yes | |
| currency | String? | yes | |
| customOrder | HashMap<String,Object>? | yes | |
| departments | ArrayList<Integer>? | yes | |
| description | String? | yes | |
| highlights | ArrayList<String>? | yes | |
| hsnCode | String? | yes | |
| id | String? | yes | |
| imageNature | String? | yes | |
| images | ArrayList<String>? | yes | |
| isActive | Boolean? | yes | |
| isDependent | Boolean? | yes | |
| isExpirable | Boolean? | yes | |
| isImageLessProduct | Boolean? | yes | |
| isPhysical | Boolean? | yes | |
| isSet | Boolean? | yes | |
| itemCode | String? | yes | |
| itemType | String? | yes | |
| l3Mapping | ArrayList<String>? | yes | |
| media | ArrayList<[Media](#Media)>? | yes | |
| modifiedBy | HashMap<String,Object>? | yes | |
| modifiedOn | String? | yes | |
| moq | HashMap<String,Object>? | yes | |
| multiSize | Boolean? | yes | |
| name | String? | yes | |
| netQuantity | [NetQuantityResponse](#NetQuantityResponse)? | yes | |
| noOfBoxes | Integer? | yes | |
| pending | String? | yes | |
| primaryColor | String? | yes | |
| productGroupTag | ArrayList<String>? | yes | |
| productPublish | [ProductPublished](#ProductPublished)? | yes | |
| returnConfig | [ReturnConfigResponse](#ReturnConfigResponse)? | yes | |
| shortDescription | String? | yes | |
| sizeGuide | String? | yes | |
| sizes | ArrayList<HashMap<String,Object>>? | yes | |
| slug | String? | yes | |
| stage | String? | yes | |
| tags | ArrayList<String>? | yes | |
| taxIdentifier | HashMap<String,Object>? | yes | |
| teaserTag | HashMap<String,Object>? | yes | |
| templateTag | String? | yes | |
| trader | ArrayList<[Trader](#Trader)>? | yes | |
| uid | Integer? | yes | |
| variantGroup | HashMap<String,Object>? | yes | |
| variantMedia | HashMap<String,Object>? | yes | |
| variants | HashMap<String,Object>? | yes | |
| verifiedBy | [VerifiedBy](#VerifiedBy)? | yes | |
| verifiedOn | String? | yes | |

---




#### [RawProductListingResponse](#RawProductListingResponse)

| Properties | Type | Nullable | Description |
| ---------- | ---- | -------- | ----------- |
| items | ArrayList<[RawProduct](#RawProduct)>? | yes | |
| page | [Page](#Page)? | yes | |

---




#### [ReturnConfig](#ReturnConfig)

| Properties | Type | Nullable | Description |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1863,7 +1863,7 @@ interface CatalogPlatformApiList {


@GET ("/service/platform/catalog/v1.0/company/{company_id}/application/{application_id}/raw-products/")
Call<CatalogPlatformModels.ProductListingResponse> getAppProducts(@Path("company_id") String companyId , @Path("application_id") String applicationId , @Query("brand_ids") List<Integer> brandIds , @Query("category_ids") List<Integer> categoryIds , @Query("department_ids") List<Integer> departmentIds , @Query("tags") List<String> tags , @Query("item_ids") List<Integer> itemIds , @Query("page_no") Integer pageNo , @Query("page_size") Integer pageSize , @Query("q") String q );
Call<CatalogPlatformModels.RawProductListingResponse> getAppProducts(@Path("company_id") String companyId , @Path("application_id") String applicationId , @Query("brand_ids") List<Integer> brandIds , @Query("category_ids") List<Integer> categoryIds , @Query("department_ids") List<Integer> departmentIds , @Query("tags") List<String> tags , @Query("item_ids") List<Integer> itemIds , @Query("page_no") Integer pageNo , @Query("page_size") Integer pageSize , @Query("q") String q );



Expand Down
Loading

0 comments on commit 6d4e1b6

Please sign in to comment.