Subversion Repositories SmartDukaan

Rev

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

Rev 18634 Rev 18735
Line 93... Line 93...
93
	8:string country,
93
	8:string country,
94
	9:bool enabled,
94
	9:bool enabled,
95
	10:AddressType type,
95
	10:AddressType type,
96
	11:i64 addedOn,
96
	11:i64 addedOn,
97
	12:string name,
97
	12:string name,
98
	13:string phone
98
	13:string phone,
-
 
99
	14:bool taxInvoiceAvailable,
-
 
100
	15:bool creditOptionAvailable
99
}
101
}
100
 
102
 
101
enum Sex{
103
enum Sex{
102
	MALE,
104
	MALE,
103
	FEMALE,
105
	FEMALE,
Line 366... Line 368...
366
	2:i64 addedOn,
368
	2:i64 addedOn,
367
	3:bool isActive,
369
	3:bool isActive,
368
	4:i64 counterId,
370
	4:i64 counterId,
369
	5:string tin,
371
	5:string tin,
370
	6:double bulkShipmentAmountLimit,
372
	6:double bulkShipmentAmountLimit,
371
	7:bool creditorAssigned
373
	7:bool creditorAssigned,
-
 
374
	8:bool tinVerified
372
}
375
}
373
 
376
 
374
struct AccessTokenizer{
377
struct AccessTokenizer{
375
	1:i64 id,
378
	1:i64 id,
376
	2:i64 userId,
379
	2:i64 userId,
Line 655... Line 658...
655
	bool isAddressEditableForCounter(1:i64 userId)
658
	bool isAddressEditableForCounter(1:i64 userId)
656
	
659
	
657
	Address getBillingAddressForUser(1:i64 userId)
660
	Address getBillingAddressForUser(1:i64 userId)
658
	
661
	
659
	bool isCreditorAssigned(1:i64 userId)
662
	bool isCreditorAssigned(1:i64 userId)
-
 
663
	
-
 
664
	bool isTaxInvoiceEnabledUser(1:i64 userId)
660
}
665
}
661
666