Subversion Repositories SmartDukaan

Rev

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

Rev 7151 Rev 7169
Line 499... Line 499...
499
    7:i64 availableLimit,
499
    7:i64 availableLimit,
500
    8:i64 creditLimit,
500
    8:i64 creditLimit,
501
    9:string salt,
501
    9:string salt,
502
    10:string password,
502
    10:string password,
503
    11:bool isActive,
503
    11:bool isActive,
504
    12:i64 circleId
504
    12:i64 circleId,
-
 
505
    13:string email
505
}
506
}
506
 
507
 
507
struct RechargeTransaction{
508
struct RechargeTransaction{
508
    1:i64 id,
509
    1:i64 id,
509
    2:i64 storeId,
510
    2:i64 storeId,
Line 524... Line 525...
524
    17:string ipAddress,
525
    17:string ipAddress,
525
    18:string name,
526
    18:string name,
526
    19:string cafNum,
527
    19:string cafNum,
527
    20:string simNum,
528
    20:string simNum,
528
    21:string alternateNumber,
529
    21:string alternateNumber,
529
    22:string description
530
    22:string description,
-
 
531
    23:i64 responseTime
530
}
532
}
531
 
533
 
532
struct TelecomCircle {
534
struct TelecomCircle {
533
	1:i64 id,
535
	1:i64 id,
534
    2:string name,
536
    2:string name,
Line 1273... Line 1275...
1273
	 HotspotStore getHotspotStore(1:i64 id, 2:string hotspotid);
1275
	 HotspotStore getHotspotStore(1:i64 id, 2:string hotspotid);
1274
	 
1276
	 
1275
	 TelecomCircle getTelecomCircle(1:i64 id, 2:string code);
1277
	 TelecomCircle getTelecomCircle(1:i64 id, 2:string code);
1276
	 
1278
	 
1277
	 binary retrieveHotspotRechargeInvoice(1:i64 rechargeId);
1279
	 binary retrieveHotspotRechargeInvoice(1:i64 rechargeId);
-
 
1280
	 
-
 
1281
	 list<RechargeTransaction> getRechargeTransactionsByNumber(1:string number);
-
 
1282
	 
-
 
1283
	 bool updateHotspotStorePassword(1:i64 storeId, 2:string password);
1278
}
1284
}