@sniipwebmaster/payment-methods-client-grpcweb 25.11.7397 → 25.11.7413
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
|
@@ -6743,7 +6743,8 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.toObject = function(include
|
|
|
6743
6743
|
maxamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 15, 0.0),
|
|
6744
6744
|
bankaccountvalidationdetailstext: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
6745
6745
|
paytoagreementstatus: jspb.Message.getFieldWithDefault(msg, 17, 0),
|
|
6746
|
-
aliasresolutionlogid: jspb.Message.getFieldWithDefault(msg, 18, 0)
|
|
6746
|
+
aliasresolutionlogid: jspb.Message.getFieldWithDefault(msg, 18, 0),
|
|
6747
|
+
formattedpaymentmethodnumber: jspb.Message.getFieldWithDefault(msg, 19, "")
|
|
6747
6748
|
};
|
|
6748
6749
|
|
|
6749
6750
|
if (includeInstance) {
|
|
@@ -6849,6 +6850,10 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.deserializeBinaryFromReader
|
|
|
6849
6850
|
var value = /** @type {number} */ (reader.readInt64());
|
|
6850
6851
|
msg.setAliasresolutionlogid(value);
|
|
6851
6852
|
break;
|
|
6853
|
+
case 19:
|
|
6854
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6855
|
+
msg.setFormattedpaymentmethodnumber(value);
|
|
6856
|
+
break;
|
|
6852
6857
|
default:
|
|
6853
6858
|
reader.skipField();
|
|
6854
6859
|
break;
|
|
@@ -6998,6 +7003,13 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.serializeBinaryToWriter = f
|
|
|
6998
7003
|
f
|
|
6999
7004
|
);
|
|
7000
7005
|
}
|
|
7006
|
+
f = message.getFormattedpaymentmethodnumber();
|
|
7007
|
+
if (f.length > 0) {
|
|
7008
|
+
writer.writeString(
|
|
7009
|
+
19,
|
|
7010
|
+
f
|
|
7011
|
+
);
|
|
7012
|
+
}
|
|
7001
7013
|
};
|
|
7002
7014
|
|
|
7003
7015
|
|
|
@@ -7362,6 +7374,24 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setAliasresolutio
|
|
|
7362
7374
|
};
|
|
7363
7375
|
|
|
7364
7376
|
|
|
7377
|
+
/**
|
|
7378
|
+
* optional string formattedPaymentMethodNumber = 19;
|
|
7379
|
+
* @return {string}
|
|
7380
|
+
*/
|
|
7381
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.getFormattedpaymentmethodnumber = function() {
|
|
7382
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 19, ""));
|
|
7383
|
+
};
|
|
7384
|
+
|
|
7385
|
+
|
|
7386
|
+
/**
|
|
7387
|
+
* @param {string} value
|
|
7388
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaytoBankAccount} returns this
|
|
7389
|
+
*/
|
|
7390
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setFormattedpaymentmethodnumber = function(value) {
|
|
7391
|
+
return jspb.Message.setProto3StringField(this, 19, value);
|
|
7392
|
+
};
|
|
7393
|
+
|
|
7394
|
+
|
|
7365
7395
|
|
|
7366
7396
|
|
|
7367
7397
|
|