@sniipwebmaster/payment-methods-client-grpcweb 26.3.8070 → 26.3.8079
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 +31 -1
- package/package.json +1 -1
|
@@ -7058,7 +7058,8 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.toObject = function(include
|
|
|
7058
7058
|
formattedpaymentmethodnumber: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
7059
7059
|
maskedpaymentmethodnumber: jspb.Message.getFieldWithDefault(msg, 20, ""),
|
|
7060
7060
|
verifyexpiry: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
|
7061
|
-
verifiedat: jspb.Message.getFieldWithDefault(msg, 22, "")
|
|
7061
|
+
verifiedat: jspb.Message.getFieldWithDefault(msg, 22, ""),
|
|
7062
|
+
amendrejected: jspb.Message.getBooleanFieldWithDefault(msg, 23, false)
|
|
7062
7063
|
};
|
|
7063
7064
|
|
|
7064
7065
|
if (includeInstance) {
|
|
@@ -7180,6 +7181,10 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.deserializeBinaryFromReader
|
|
|
7180
7181
|
var value = /** @type {string} */ (reader.readString());
|
|
7181
7182
|
msg.setVerifiedat(value);
|
|
7182
7183
|
break;
|
|
7184
|
+
case 23:
|
|
7185
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
7186
|
+
msg.setAmendrejected(value);
|
|
7187
|
+
break;
|
|
7183
7188
|
default:
|
|
7184
7189
|
reader.skipField();
|
|
7185
7190
|
break;
|
|
@@ -7357,6 +7362,13 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.serializeBinaryToWriter = f
|
|
|
7357
7362
|
f
|
|
7358
7363
|
);
|
|
7359
7364
|
}
|
|
7365
|
+
f = message.getAmendrejected();
|
|
7366
|
+
if (f) {
|
|
7367
|
+
writer.writeBool(
|
|
7368
|
+
23,
|
|
7369
|
+
f
|
|
7370
|
+
);
|
|
7371
|
+
}
|
|
7360
7372
|
};
|
|
7361
7373
|
|
|
7362
7374
|
|
|
@@ -7793,6 +7805,24 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setVerifiedat = f
|
|
|
7793
7805
|
};
|
|
7794
7806
|
|
|
7795
7807
|
|
|
7808
|
+
/**
|
|
7809
|
+
* optional bool amendRejected = 23;
|
|
7810
|
+
* @return {boolean}
|
|
7811
|
+
*/
|
|
7812
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.getAmendrejected = function() {
|
|
7813
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 23, false));
|
|
7814
|
+
};
|
|
7815
|
+
|
|
7816
|
+
|
|
7817
|
+
/**
|
|
7818
|
+
* @param {boolean} value
|
|
7819
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaytoBankAccount} returns this
|
|
7820
|
+
*/
|
|
7821
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setAmendrejected = function(value) {
|
|
7822
|
+
return jspb.Message.setProto3BooleanField(this, 23, value);
|
|
7823
|
+
};
|
|
7824
|
+
|
|
7825
|
+
|
|
7796
7826
|
|
|
7797
7827
|
|
|
7798
7828
|
|