@sniipwebmaster/transaction-service-client-grpcweb-ts 25.2.12363 → 25.2.12380
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2331,6 +2331,9 @@ export class PaymentAmountForPeriodResponse extends jspb.Message {
|
|
|
2331
2331
|
getNumberoftransactions(): number;
|
|
2332
2332
|
setNumberoftransactions(value: number): PaymentAmountForPeriodResponse;
|
|
2333
2333
|
|
|
2334
|
+
getFakefieldtoremove(): number;
|
|
2335
|
+
setFakefieldtoremove(value: number): PaymentAmountForPeriodResponse;
|
|
2336
|
+
|
|
2334
2337
|
serializeBinary(): Uint8Array;
|
|
2335
2338
|
toObject(includeInstance?: boolean): PaymentAmountForPeriodResponse.AsObject;
|
|
2336
2339
|
static toObject(includeInstance: boolean, msg: PaymentAmountForPeriodResponse): PaymentAmountForPeriodResponse.AsObject;
|
|
@@ -2345,6 +2348,7 @@ export namespace PaymentAmountForPeriodResponse {
|
|
|
2345
2348
|
paymentamountsum: number,
|
|
2346
2349
|
userid: number,
|
|
2347
2350
|
numberoftransactions: number,
|
|
2351
|
+
fakefieldtoremove: number,
|
|
2348
2352
|
}
|
|
2349
2353
|
}
|
|
2350
2354
|
|
|
@@ -20347,7 +20347,8 @@ proto.sniiptransactionapi.PaymentAmountForPeriodResponse.toObject = function(inc
|
|
|
20347
20347
|
responsecode: (f = msg.getResponsecode()) && proto.sniiptransactionapi.ResponseCode.toObject(includeInstance, f),
|
|
20348
20348
|
paymentamountsum: jspb.Message.getFloatingPointFieldWithDefault(msg, 2, 0.0),
|
|
20349
20349
|
userid: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
20350
|
-
numberoftransactions: jspb.Message.getFieldWithDefault(msg, 4, 0)
|
|
20350
|
+
numberoftransactions: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
20351
|
+
fakefieldtoremove: jspb.Message.getFieldWithDefault(msg, 5, 0)
|
|
20351
20352
|
};
|
|
20352
20353
|
|
|
20353
20354
|
if (includeInstance) {
|
|
@@ -20401,6 +20402,10 @@ proto.sniiptransactionapi.PaymentAmountForPeriodResponse.deserializeBinaryFromRe
|
|
|
20401
20402
|
var value = /** @type {number} */ (reader.readInt32());
|
|
20402
20403
|
msg.setNumberoftransactions(value);
|
|
20403
20404
|
break;
|
|
20405
|
+
case 5:
|
|
20406
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
20407
|
+
msg.setFakefieldtoremove(value);
|
|
20408
|
+
break;
|
|
20404
20409
|
default:
|
|
20405
20410
|
reader.skipField();
|
|
20406
20411
|
break;
|
|
@@ -20459,6 +20464,13 @@ proto.sniiptransactionapi.PaymentAmountForPeriodResponse.serializeBinaryToWriter
|
|
|
20459
20464
|
f
|
|
20460
20465
|
);
|
|
20461
20466
|
}
|
|
20467
|
+
f = message.getFakefieldtoremove();
|
|
20468
|
+
if (f !== 0) {
|
|
20469
|
+
writer.writeInt32(
|
|
20470
|
+
5,
|
|
20471
|
+
f
|
|
20472
|
+
);
|
|
20473
|
+
}
|
|
20462
20474
|
};
|
|
20463
20475
|
|
|
20464
20476
|
|
|
@@ -20553,6 +20565,24 @@ proto.sniiptransactionapi.PaymentAmountForPeriodResponse.prototype.setNumberoftr
|
|
|
20553
20565
|
};
|
|
20554
20566
|
|
|
20555
20567
|
|
|
20568
|
+
/**
|
|
20569
|
+
* optional int32 fakeFieldToRemove = 5;
|
|
20570
|
+
* @return {number}
|
|
20571
|
+
*/
|
|
20572
|
+
proto.sniiptransactionapi.PaymentAmountForPeriodResponse.prototype.getFakefieldtoremove = function() {
|
|
20573
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
20574
|
+
};
|
|
20575
|
+
|
|
20576
|
+
|
|
20577
|
+
/**
|
|
20578
|
+
* @param {number} value
|
|
20579
|
+
* @return {!proto.sniiptransactionapi.PaymentAmountForPeriodResponse} returns this
|
|
20580
|
+
*/
|
|
20581
|
+
proto.sniiptransactionapi.PaymentAmountForPeriodResponse.prototype.setFakefieldtoremove = function(value) {
|
|
20582
|
+
return jspb.Message.setProto3IntField(this, 5, value);
|
|
20583
|
+
};
|
|
20584
|
+
|
|
20585
|
+
|
|
20556
20586
|
|
|
20557
20587
|
|
|
20558
20588
|
|