Subversion Repositories SmartDukaan

Rev

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

Rev 8168 Rev 8182
Line 232... Line 232...
232
    6:bool inStock,
232
    6:bool inStock,
233
    7:bool comingSoon,
233
    7:bool comingSoon,
234
    8:i64 eventDate
234
    8:i64 eventDate
235
}
235
}
236
    
236
    
-
 
237
struct EbayItem{
-
 
238
	1:string ebayListingId,
-
 
239
	2:i64 itemId,
-
 
240
	3:string listingName,
-
 
241
	4:i64 listingPrice,
-
 
242
	5:i64 listingExpiryDate,
-
 
243
	6:double subsidy,
-
 
244
	7:i64 defaultWarehouseId
237
    
245
}    
238
 
246
 
239
service CatalogService extends GenericService.GenericService{
247
service CatalogService extends GenericService.GenericService{
240
 
248
 
241
/**
249
/**
242
	Availability and inventory attributes	
250
	Availability and inventory attributes	
Line 526... Line 534...
526
	
534
	
527
	void addPageViewEvent(1:PageViewEvents pageViewEvents)
535
	void addPageViewEvent(1:PageViewEvents pageViewEvents)
528
	
536
	
529
	void addCartEvent(1:CartEvents cartEvents)
537
	void addCartEvent(1:CartEvents cartEvents)
530
	
538
	
-
 
539
	void addEbayItem(1:EbayItem ebayItem)
-
 
540
	
-
 
541
	EbayItem getEbayItem(1:string listingId)
-
 
542
	
-
 
543
	void updateEbayItem(1:EbayItem ebayItem)
-
 
544
 
531
	list<Amazonlisted> getAmazonListedItems(1:i64 offset,2:i64 limit)
545
	list<Amazonlisted> getAmazonListedItems(1:i64 offset,2:i64 limit)
532
	
546
	
533
	bool updateAmazonAttributesInBulk(1:map<i64, Amazonlisted> amazonlisted)
547
	bool updateAmazonAttributesInBulk(1:map<i64, Amazonlisted> amazonlisted)
534
	
548
 
535
}
549
}