@sniipwebmaster/realtime-message-client-grpcweb 21.24.288 → 22.2.314
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
|
@@ -3676,7 +3676,8 @@ proto.realtimemessageapi.BulkPaymentSummary.toObject = function(includeInstance,
|
|
|
3676
3676
|
bulkpaymentid: msg.getBulkpaymentid(),
|
|
3677
3677
|
tasksList: jspb.Message.toObjectList(msg.getTasksList(),
|
|
3678
3678
|
proto.realtimemessageapi.BulkPaymentTaskSummary.toObject, includeInstance),
|
|
3679
|
-
isforscheduledpayments: msg.getIsforscheduledpayments()
|
|
3679
|
+
isforscheduledpayments: msg.getIsforscheduledpayments(),
|
|
3680
|
+
isforbankaccount: msg.getIsforbankaccount()
|
|
3680
3681
|
};
|
|
3681
3682
|
|
|
3682
3683
|
if (includeInstance) {
|
|
@@ -3727,6 +3728,10 @@ proto.realtimemessageapi.BulkPaymentSummary.deserializeBinaryFromReader = functi
|
|
|
3727
3728
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
3728
3729
|
msg.setIsforscheduledpayments(value);
|
|
3729
3730
|
break;
|
|
3731
|
+
case 4:
|
|
3732
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
3733
|
+
msg.setIsforbankaccount(value);
|
|
3734
|
+
break;
|
|
3730
3735
|
default:
|
|
3731
3736
|
reader.skipField();
|
|
3732
3737
|
break;
|
|
@@ -3787,6 +3792,13 @@ proto.realtimemessageapi.BulkPaymentSummary.prototype.serializeBinaryToWriter =
|
|
|
3787
3792
|
f
|
|
3788
3793
|
);
|
|
3789
3794
|
}
|
|
3795
|
+
f = this.getIsforbankaccount();
|
|
3796
|
+
if (f) {
|
|
3797
|
+
writer.writeBool(
|
|
3798
|
+
4,
|
|
3799
|
+
f
|
|
3800
|
+
);
|
|
3801
|
+
}
|
|
3790
3802
|
};
|
|
3791
3803
|
|
|
3792
3804
|
|
|
@@ -3854,6 +3866,23 @@ proto.realtimemessageapi.BulkPaymentSummary.prototype.setIsforscheduledpayments
|
|
|
3854
3866
|
};
|
|
3855
3867
|
|
|
3856
3868
|
|
|
3869
|
+
/**
|
|
3870
|
+
* optional bool isForBankAccount = 4;
|
|
3871
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
3872
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
3873
|
+
* @return {boolean}
|
|
3874
|
+
*/
|
|
3875
|
+
proto.realtimemessageapi.BulkPaymentSummary.prototype.getIsforbankaccount = function() {
|
|
3876
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 4, false));
|
|
3877
|
+
};
|
|
3878
|
+
|
|
3879
|
+
|
|
3880
|
+
/** @param {boolean} value */
|
|
3881
|
+
proto.realtimemessageapi.BulkPaymentSummary.prototype.setIsforbankaccount = function(value) {
|
|
3882
|
+
jspb.Message.setField(this, 4, value);
|
|
3883
|
+
};
|
|
3884
|
+
|
|
3885
|
+
|
|
3857
3886
|
|
|
3858
3887
|
/**
|
|
3859
3888
|
* Generated by JsPbCodeGenerator.
|