@sniipwebmaster/payment-methods-client-grpcweb 22.13.4720 → 22.13.4730
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
|
@@ -17845,7 +17845,8 @@ proto.sniippaymentmethodsserviceapi.ValidatedPaymentMethodsResponse.prototype.to
|
|
|
17845
17845
|
proto.sniippaymentmethodsserviceapi.ValidatedPaymentMethodsResponse.toObject = function(includeInstance, msg) {
|
|
17846
17846
|
var f, obj = {
|
|
17847
17847
|
paymentmethodid: msg.getPaymentmethodid(),
|
|
17848
|
-
accepted: msg.getAccepted()
|
|
17848
|
+
accepted: msg.getAccepted(),
|
|
17849
|
+
expired: msg.getExpired()
|
|
17849
17850
|
};
|
|
17850
17851
|
|
|
17851
17852
|
if (includeInstance) {
|
|
@@ -17890,6 +17891,10 @@ proto.sniippaymentmethodsserviceapi.ValidatedPaymentMethodsResponse.deserializeB
|
|
|
17890
17891
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
17891
17892
|
msg.setAccepted(value);
|
|
17892
17893
|
break;
|
|
17894
|
+
case 3:
|
|
17895
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
17896
|
+
msg.setExpired(value);
|
|
17897
|
+
break;
|
|
17893
17898
|
default:
|
|
17894
17899
|
reader.skipField();
|
|
17895
17900
|
break;
|
|
@@ -17942,6 +17947,13 @@ proto.sniippaymentmethodsserviceapi.ValidatedPaymentMethodsResponse.prototype.se
|
|
|
17942
17947
|
f
|
|
17943
17948
|
);
|
|
17944
17949
|
}
|
|
17950
|
+
f = this.getExpired();
|
|
17951
|
+
if (f) {
|
|
17952
|
+
writer.writeBool(
|
|
17953
|
+
3,
|
|
17954
|
+
f
|
|
17955
|
+
);
|
|
17956
|
+
}
|
|
17945
17957
|
};
|
|
17946
17958
|
|
|
17947
17959
|
|
|
@@ -17986,6 +17998,23 @@ proto.sniippaymentmethodsserviceapi.ValidatedPaymentMethodsResponse.prototype.se
|
|
|
17986
17998
|
};
|
|
17987
17999
|
|
|
17988
18000
|
|
|
18001
|
+
/**
|
|
18002
|
+
* optional bool expired = 3;
|
|
18003
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
18004
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
18005
|
+
* @return {boolean}
|
|
18006
|
+
*/
|
|
18007
|
+
proto.sniippaymentmethodsserviceapi.ValidatedPaymentMethodsResponse.prototype.getExpired = function() {
|
|
18008
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 3, false));
|
|
18009
|
+
};
|
|
18010
|
+
|
|
18011
|
+
|
|
18012
|
+
/** @param {boolean} value */
|
|
18013
|
+
proto.sniippaymentmethodsserviceapi.ValidatedPaymentMethodsResponse.prototype.setExpired = function(value) {
|
|
18014
|
+
jspb.Message.setField(this, 3, value);
|
|
18015
|
+
};
|
|
18016
|
+
|
|
18017
|
+
|
|
17989
18018
|
|
|
17990
18019
|
/**
|
|
17991
18020
|
* Generated by JsPbCodeGenerator.
|