@sniipwebmaster/payment-methods-client-grpcweb 25.9.7130 → 25.10.7149
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
|
@@ -6694,7 +6694,8 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.toObject = function(include
|
|
|
6694
6694
|
isverifyexpired: jspb.Message.getBooleanFieldWithDefault(msg, 11, false),
|
|
6695
6695
|
isdeleted: jspb.Message.getBooleanFieldWithDefault(msg, 12, false),
|
|
6696
6696
|
bankaccountstatus: jspb.Message.getFieldWithDefault(msg, 13, 0),
|
|
6697
|
-
colourscheme: (f = msg.getColourscheme()) && proto.sniippaymentmethodsserviceapi.ColourScheme.toObject(includeInstance, f)
|
|
6697
|
+
colourscheme: (f = msg.getColourscheme()) && proto.sniippaymentmethodsserviceapi.ColourScheme.toObject(includeInstance, f),
|
|
6698
|
+
maxamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 15, 0.0)
|
|
6698
6699
|
};
|
|
6699
6700
|
|
|
6700
6701
|
if (includeInstance) {
|
|
@@ -6784,6 +6785,10 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.deserializeBinaryFromReader
|
|
|
6784
6785
|
reader.readMessage(value,proto.sniippaymentmethodsserviceapi.ColourScheme.deserializeBinaryFromReader);
|
|
6785
6786
|
msg.setColourscheme(value);
|
|
6786
6787
|
break;
|
|
6788
|
+
case 15:
|
|
6789
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
6790
|
+
msg.setMaxamount(value);
|
|
6791
|
+
break;
|
|
6787
6792
|
default:
|
|
6788
6793
|
reader.skipField();
|
|
6789
6794
|
break;
|
|
@@ -6905,6 +6910,13 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.serializeBinaryToWriter = f
|
|
|
6905
6910
|
proto.sniippaymentmethodsserviceapi.ColourScheme.serializeBinaryToWriter
|
|
6906
6911
|
);
|
|
6907
6912
|
}
|
|
6913
|
+
f = message.getMaxamount();
|
|
6914
|
+
if (f !== 0.0) {
|
|
6915
|
+
writer.writeDouble(
|
|
6916
|
+
15,
|
|
6917
|
+
f
|
|
6918
|
+
);
|
|
6919
|
+
}
|
|
6908
6920
|
};
|
|
6909
6921
|
|
|
6910
6922
|
|
|
@@ -7179,6 +7191,24 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.hasColourscheme =
|
|
|
7179
7191
|
};
|
|
7180
7192
|
|
|
7181
7193
|
|
|
7194
|
+
/**
|
|
7195
|
+
* optional double maxAmount = 15;
|
|
7196
|
+
* @return {number}
|
|
7197
|
+
*/
|
|
7198
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.getMaxamount = function() {
|
|
7199
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 15, 0.0));
|
|
7200
|
+
};
|
|
7201
|
+
|
|
7202
|
+
|
|
7203
|
+
/**
|
|
7204
|
+
* @param {number} value
|
|
7205
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaytoBankAccount} returns this
|
|
7206
|
+
*/
|
|
7207
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setMaxamount = function(value) {
|
|
7208
|
+
return jspb.Message.setProto3FloatField(this, 15, value);
|
|
7209
|
+
};
|
|
7210
|
+
|
|
7211
|
+
|
|
7182
7212
|
|
|
7183
7213
|
|
|
7184
7214
|
|