Subversion Repositories SmartDukaan

Rev

Rev 2113 | Rev 2128 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2113 Rev 2127
Line 64... Line 64...
64
struct Item{
64
struct Item{
65
	1:i64 id,
65
	1:i64 id,
66
	2:string productGroup
66
	2:string productGroup
67
	3:string brand,
67
	3:string brand,
68
	4:string modelNumber,
68
	4:string modelNumber,
69
	5:string modelName,
69
	5:optional string modelName,
70
	6:string color,
70
	6:optional string color,
71
	7:i64 category,
71
	7:optional i64 category,
72
	8:string comments,
72
	8:optional string comments,
73
	9:i64 catalogItemId,
73
	9:optional i64 catalogItemId,
74
	10:i64 featureId,
74
	10:optional i64 featureId,
75
	11:string featureDescription,
75
	11:optional string featureDescription,
76
	12:ItemInventory itemInventory,
76
	12:optional ItemInventory itemInventory,
77
	13:double mrp, //maxmimum retail price
77
	13:optional double mrp, //maxmimum retail price
78
	14:double mop, //market operative price
78
	14:optional double mop, //market operative price
79
	15:double sellingPrice, //Selling price
79
	15:optional double sellingPrice, //Selling price
80
	16:double transferPrice,
80
	16:optional double transferPrice,
81
	17:double weight,
81
	17:optional double weight,
82
	18:i64 addedOn,
82
	18:optional i64 addedOn,
83
	19:i64 startDate,
83
	19:optional i64 startDate,
84
	20:i64 retireDate,
84
	20:optional i64 retireDate,
85
	21:status itemStatus,
85
	21:status itemStatus,
86
	22:string status_description,
86
	22:optional string status_description,
87
	23:map<string,string> otherInfo,
87
	23:optional map<string,string> otherInfo,
88
	24:string bestDealText,
88
	24:optional string bestDealText,
89
	25:double bestDealValue,
89
	25:optional double bestDealValue,
90
	26:double dealerPrice,
90
	26:optional double dealerPrice,
91
	27:bool defaultForEntity,
91
	27:optional bool defaultForEntity,
92
	28:i64 updatedOn,
92
	28:optional i64 updatedOn,
93
	29:i64 bestSellingRank, 
93
	29:optional i64 bestSellingRank, 
94
	30:string hotspotCategory
94
	30:string hotspotCategory
95
}
95
}
96
 
96
 
97
struct VendorItemPricing{
97
struct VendorItemPricing{
98
	1:i64 vendorId,
98
	1:i64 vendorId,