Subversion Repositories SmartDukaan

Rev

Rev 14765 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14372 kshitij.so 1
namespace java in.shop2020.model.v1.dtr
2
namespace py shop2020.thriftpy.model.v1.dtr
3
 
4
include "GenericService.thrift"
5
 
6
/**
7
	Objects
8
*/
9
struct LivePricing{
10
	1:i64 _id,
11
	2:double available_price,
12
	3:string marketPlaceUrl,
13
	4:i64 in_stock,
14
	5:i64 source_id,
15
	6:string source_product_name,
16
	7:string thumbnail
17
}
18
 
19
service DtrService extends GenericService.GenericService{
20
 
21
list<LivePricing> getLatestPricing(1:i64 skuBundleId, 2:i64 source_id)
22
 
23
}