File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ export default interface FeaturedCollectionProductTypes {
2+ variant : any [ ] ;
3+ url : string ;
4+ display_tag : string [ ] ;
5+ image : string ;
6+ replacement_done : boolean | null ;
7+ rating : number ;
8+ min_order_qty : number ;
9+ currency_symbol : string ;
10+ brand : string | null ;
11+ item_name : string ;
12+ in_stock_status : boolean ;
13+ access_level : number ;
14+ disabled : number ;
15+ category : string ;
16+ is_replacement : boolean | null ;
17+ currency : string ;
18+ order_status : string | null ;
19+ oem_part_number : string | null ;
20+ status : string ;
21+ price : number ;
22+ mrp_price : number ;
23+ short_description : string | null ;
24+ variant_of : string ;
25+ attributes : any [ ] ;
26+ has_variants : number ;
27+ strikethrough_rate : number | null ;
28+ brand_img : string | null ;
29+ name : string ;
30+ slug : string ;
31+ }
32+ export default interface FeaturedCollectionTypes {
33+ description : string | null ;
34+ tag_image : string | null ;
35+ tag_name : string | null ;
36+ value : FeaturedCollectionProductTypes [ ] ;
37+ }
You can’t perform that action at this time.
0 commit comments