@sniipwebmaster/realtime-message-client-grpcweb 21.23.191 → 21.23.199
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.
- package/dependancies/service_pb.js +30 -1
- package/package.json +1 -1
|
@@ -3460,7 +3460,8 @@ proto.realtimemessageapi.BulkPaymentSummary.toObject = function(includeInstance,
|
|
|
3460
3460
|
var f, obj = {
|
|
3461
3461
|
bulkpaymentid: msg.getBulkpaymentid(),
|
|
3462
3462
|
tasksList: jspb.Message.toObjectList(msg.getTasksList(),
|
|
3463
|
-
proto.realtimemessageapi.BulkPaymentTaskSummary.toObject, includeInstance)
|
|
3463
|
+
proto.realtimemessageapi.BulkPaymentTaskSummary.toObject, includeInstance),
|
|
3464
|
+
isforscheduledpayments: msg.getIsforscheduledpayments()
|
|
3464
3465
|
};
|
|
3465
3466
|
|
|
3466
3467
|
if (includeInstance) {
|
|
@@ -3507,6 +3508,10 @@ proto.realtimemessageapi.BulkPaymentSummary.deserializeBinaryFromReader = functi
|
|
|
3507
3508
|
msg.getTasksList().push(value);
|
|
3508
3509
|
msg.setTasksList(msg.getTasksList());
|
|
3509
3510
|
break;
|
|
3511
|
+
case 3:
|
|
3512
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
3513
|
+
msg.setIsforscheduledpayments(value);
|
|
3514
|
+
break;
|
|
3510
3515
|
default:
|
|
3511
3516
|
reader.skipField();
|
|
3512
3517
|
break;
|
|
@@ -3560,6 +3565,13 @@ proto.realtimemessageapi.BulkPaymentSummary.prototype.serializeBinaryToWriter =
|
|
|
3560
3565
|
proto.realtimemessageapi.BulkPaymentTaskSummary.serializeBinaryToWriter
|
|
3561
3566
|
);
|
|
3562
3567
|
}
|
|
3568
|
+
f = this.getIsforscheduledpayments();
|
|
3569
|
+
if (f) {
|
|
3570
|
+
writer.writeBool(
|
|
3571
|
+
3,
|
|
3572
|
+
f
|
|
3573
|
+
);
|
|
3574
|
+
}
|
|
3563
3575
|
};
|
|
3564
3576
|
|
|
3565
3577
|
|
|
@@ -3610,6 +3622,23 @@ proto.realtimemessageapi.BulkPaymentSummary.prototype.clearTasksList = function(
|
|
|
3610
3622
|
};
|
|
3611
3623
|
|
|
3612
3624
|
|
|
3625
|
+
/**
|
|
3626
|
+
* optional bool isForScheduledPayments = 3;
|
|
3627
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
3628
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
3629
|
+
* @return {boolean}
|
|
3630
|
+
*/
|
|
3631
|
+
proto.realtimemessageapi.BulkPaymentSummary.prototype.getIsforscheduledpayments = function() {
|
|
3632
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 3, false));
|
|
3633
|
+
};
|
|
3634
|
+
|
|
3635
|
+
|
|
3636
|
+
/** @param {boolean} value */
|
|
3637
|
+
proto.realtimemessageapi.BulkPaymentSummary.prototype.setIsforscheduledpayments = function(value) {
|
|
3638
|
+
jspb.Message.setField(this, 3, value);
|
|
3639
|
+
};
|
|
3640
|
+
|
|
3641
|
+
|
|
3613
3642
|
|
|
3614
3643
|
/**
|
|
3615
3644
|
* Generated by JsPbCodeGenerator.
|