Subversion Repositories SmartDukaan

Rev

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

Rev 5553 Rev 5719
Line 55... Line 55...
55
	6:bool codAllowed,
55
	6:bool codAllowed,
56
	7:i64 fulfilmentWarehouseId
56
	7:i64 fulfilmentWarehouseId
57
}
57
}
58
 
58
 
59
struct PickupStore {
59
struct PickupStore {
60
	1:i64 id,	
60
	1:i64 id,
-
 
61
	2:string hotspotId,	
61
	2:string name,
62
	3:string name,
62
    3:string line1,
63
    4:string line1,
63
    4:string line2,
64
    5:string line2,
64
    5:string city,
65
    6:string city,
65
    6:string state,
66
    7:string state,
66
    7:string pin,
67
    8:string pin,
67
    8:string phone
68
    9:string phone
68
}
69
}
69
    
70
    
70
exception LogisticsServiceException{
71
exception LogisticsServiceException{
71
	1:i64 id,
72
	1:i64 id,
72
	2:string message
73
	2:string message
Line 137... Line 138...
137
	i64 getProviderForPickupType(1:i64 pickUp),
138
	i64 getProviderForPickupType(1:i64 pickUp),
138
	
139
	
139
	
140
	
140
	list<PickupStore> getAllPickupStores(),
141
	list<PickupStore> getAllPickupStores(),
141
	
142
	
142
	PickupStore getPickupStore(1:i64 storeId)
143
	PickupStore getPickupStore(1:i64 storeId),
-
 
144
	
-
 
145
	PickupStore getPickupStoreByHotspotId(1:string hotspotId)
143
}
146
}