Subversion Repositories SmartDukaan

Rev

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

Rev 13521 Rev 15251
Line 340... Line 340...
340
	4:i64 counterId,
340
	4:i64 counterId,
341
	5:string tin,
341
	5:string tin,
342
	6:double bulkShipmentAmountLimit
342
	6:double bulkShipmentAmountLimit
343
}
343
}
344
 
344
 
-
 
345
struct AccessTokenizer{
-
 
346
	1:i64 id,
-
 
347
	2:i64 userId,
-
 
348
	3:string source,
-
 
349
	4:string tokenString,
-
 
350
	5:i64 expiredTime,
-
 
351
	6:bool expired
-
 
352
}
-
 
353
 
345
 
354
 
346
/**
355
/**
347
Promotion Service
356
Promotion Service
348
*/
357
*/
349
service PromotionService extends GenericService.GenericService{
358
service PromotionService extends GenericService.GenericService{
Line 606... Line 615...
606
	
615
	
607
	list<Counter> searchCounter(1:string type1,  2:string searchString)
616
	list<Counter> searchCounter(1:string type1,  2:string searchString)
608
	
617
	
609
	list<User> getAllUsersByCounter(1:i64 counterId)
618
	list<User> getAllUsersByCounter(1:i64 counterId)
610
	
619
	
-
 
620
	string getActiveAccessTokenForUser(1:i64 userId, 2:string source)
-
 
621
	
-
 
622
	bool validateAccessToken(1:string accessToken)
-
 
623
	
611
}
624
}
612
625