Subversion Repositories SmartDukaan

Rev

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

Rev 7897 Rev 7977
Line 207... Line 207...
207
    19:i64 category_code,
207
    19:i64 category_code,
208
    20:i64 mfnPriceLastUpdatedOn,
208
    20:i64 mfnPriceLastUpdatedOn,
209
    21:i64 fbaPriceLastUpdatedOn,
209
    21:i64 fbaPriceLastUpdatedOn,
210
    22:i64 mfnPriceLastUpdatedOnSc,
210
    22:i64 mfnPriceLastUpdatedOnSc,
211
    23:i64 fbaPriceLastUpdatedOnSc
211
    23:i64 fbaPriceLastUpdatedOnSc
-
 
212
}
212
    }
213
    
-
 
214
struct PageViewEvents{
-
 
215
    1:i64 catalogId,
-
 
216
    2:string url,
-
 
217
    3:double sellingPrice,
-
 
218
    4:bool comingSoon,
-
 
219
    5:string ip,
-
 
220
    6:string sessionId,
-
 
221
    7:i64 eventDate
-
 
222
}
-
 
223
 
-
 
224
struct CartEvents{
-
 
225
    1:i64 catalogId,
-
 
226
    2:i64 itemId,
-
 
227
    3:double sellingPrice,
-
 
228
    4:string ip,
-
 
229
    5:string sessionId,
-
 
230
    6:bool inStock,
-
 
231
    7:bool comingSoon,
-
 
232
    8:i64 eventDate
-
 
233
}
-
 
234
    
-
 
235
    
213
 
236
 
214
service CatalogService extends GenericService.GenericService{
237
service CatalogService extends GenericService.GenericService{
215
 
238
 
216
/**
239
/**
217
	Availability and inventory attributes	
240
	Availability and inventory attributes	
Line 498... Line 521...
498
	
521
	
499
	bool updateTimestampForAmazonFeeds(1:string type, 2: list<i64> sku, 3:i64 timestamp)
522
	bool updateTimestampForAmazonFeeds(1:string type, 2: list<i64> sku, 3:i64 timestamp)
500
	
523
	
501
	list<Category> getAllParentCategories()
524
	list<Category> getAllParentCategories()
502
	
525
	
-
 
526
	void addPageViewEvent(1:PageViewEvents pageViewEvents)
-
 
527
	
-
 
528
	void addCartEvent(1:CartEvents cartEvents)
-
 
529
	
503
}
530
}