Subversion Repositories SmartDukaan

Rev

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

Rev 3428 Rev 3499
Line 173... Line 173...
173
	11:string communicationEmail,
173
	11:string communicationEmail,
174
	12:i64 activeCartId,
174
	12:i64 activeCartId,
175
	13:string jsessionId,
175
	13:string jsessionId,
176
	14:bool isAnonymous,
176
	14:bool isAnonymous,
177
	15:string source,
177
	15:string source,
178
	16:i64 sourceStartTime
178
	16:i64 sourceStartTime,
-
 
179
	17:double trustLevel
179
}
180
}
180
 
181
 
181
struct UserCommunication{
182
struct UserCommunication{
182
	1:i64 id,
183
	1:i64 id,
183
	2:i64 userId,
184
	2:i64 userId,
Line 487... Line 488...
487
	void updateBrowseHistory(1:i64 userId, 2:i64 itemId),
488
	void updateBrowseHistory(1:i64 userId, 2:i64 itemId),
488
	
489
	
489
	/**
490
	/**
490
	Returns count of Carts with given coupon applied
491
	Returns count of Carts with given coupon applied
491
	*/
492
	*/
492
	i64 getCartsWithCouponCount(1:string couponCode)
493
	i64 getCartsWithCouponCount(1:string couponCode),
-
 
494
 
-
 
495
	/**
-
 
496
	 * Updates COD trust level of a user
-
 
497
	 */
-
 
498
	void increaseTrustLevel(1:i64 userId, 2:double trustLevelDelta)
493
}
499
}
494
500