Subversion Repositories SmartDukaan

Rev

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

Rev 12169 Rev 12243
Line 552... Line 552...
552
	3:double saholicPrice,
552
	3:double saholicPrice,
553
	4:double sdPrice,
553
	4:double sdPrice,
554
	5:double fkPrice,
554
	5:double fkPrice,
555
	6:double amazonPrice,
555
	6:double amazonPrice,
556
	7:string productName,
556
	7:string productName,
557
	8:i64 lastProcessedTimestamp
557
	8:i64 lastProcessedTimestamp,
-
 
558
	9:double diff
-
 
559
}
-
 
560
 
-
 
561
struct CompetitorPricing {
-
 
562
	1:i64 item_id,
-
 
563
	2:bool isSnapdeal,
-
 
564
	3:bool isFlipkart,
-
 
565
	4:bool isAmazon,
-
 
566
	5:double lowestSnapdealPrice,
-
 
567
	6:double lowestFlipkartPrice,
-
 
568
	7:double lowestMfnPrice,
-
 
569
	8:double lowestFbaPrice,
-
 
570
	9:bool processed,
-
 
571
	10:i64 uploadId
-
 
572
	
558
}
573
}
559
 
574
 
560
service CatalogService extends GenericService.GenericService{
575
service CatalogService extends GenericService.GenericService{
561
 
576
 
562
/**
577
/**
Line 974... Line 989...
974
	
989
	
975
	list<PdPriceComp> getAllPrivateDealsComparison(),
990
	list<PdPriceComp> getAllPrivateDealsComparison(),
976
	
991
	
977
	list<SnapdealItem> getAllSnapdealMarketplaceItem(),
992
	list<SnapdealItem> getAllSnapdealMarketplaceItem(),
978
	
993
	
979
	list<FlipkartItem> getAllFlipkartMarketplaceItem()
994
	list<FlipkartItem> getAllFlipkartMarketplaceItem(),
-
 
995
	
-
 
996
	void addCompetitorScraping(1:map<i64,CompetitorPricing> competitorPricingMap),
-
 
997
	
-
 
998
	list<CompetitorPricing> getPreviousCompetitorScraping(1:i64 delta)
980
	
999
	
981
}
1000
}