@sniipwebmaster/payment-methods-client-grpcweb 21.2.3062 → 21.6.3092
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
|
@@ -8647,7 +8647,8 @@ proto.sniippaymentmethodsserviceapi.PaymentMethod.toObject = function(includeIns
|
|
|
8647
8647
|
bankaccount: (f = msg.getBankaccount()) && proto.sniippaymentmethodsserviceapi.BankAccount.toObject(includeInstance, f),
|
|
8648
8648
|
activationsList: jspb.Message.toObjectList(msg.getActivationsList(),
|
|
8649
8649
|
proto.sniippaymentmethodsserviceapi.Activation.toObject, includeInstance),
|
|
8650
|
-
applepaydetail: (f = msg.getApplepaydetail()) && proto.sniippaymentmethodsserviceapi.ApplePayDetail.toObject(includeInstance, f)
|
|
8650
|
+
applepaydetail: (f = msg.getApplepaydetail()) && proto.sniippaymentmethodsserviceapi.ApplePayDetail.toObject(includeInstance, f),
|
|
8651
|
+
isprepaid: msg.getIsprepaid()
|
|
8651
8652
|
};
|
|
8652
8653
|
|
|
8653
8654
|
if (includeInstance) {
|
|
@@ -8713,6 +8714,10 @@ proto.sniippaymentmethodsserviceapi.PaymentMethod.deserializeBinaryFromReader =
|
|
|
8713
8714
|
reader.readMessage(value,proto.sniippaymentmethodsserviceapi.ApplePayDetail.deserializeBinaryFromReader);
|
|
8714
8715
|
msg.setApplepaydetail(value);
|
|
8715
8716
|
break;
|
|
8717
|
+
case 9:
|
|
8718
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
8719
|
+
msg.setIsprepaid(value);
|
|
8720
|
+
break;
|
|
8716
8721
|
default:
|
|
8717
8722
|
reader.skipField();
|
|
8718
8723
|
break;
|
|
@@ -8797,6 +8802,13 @@ proto.sniippaymentmethodsserviceapi.PaymentMethod.prototype.serializeBinaryToWri
|
|
|
8797
8802
|
proto.sniippaymentmethodsserviceapi.ApplePayDetail.serializeBinaryToWriter
|
|
8798
8803
|
);
|
|
8799
8804
|
}
|
|
8805
|
+
f = this.getIsprepaid();
|
|
8806
|
+
if (f) {
|
|
8807
|
+
writer.writeBool(
|
|
8808
|
+
9,
|
|
8809
|
+
f
|
|
8810
|
+
);
|
|
8811
|
+
}
|
|
8800
8812
|
};
|
|
8801
8813
|
|
|
8802
8814
|
|
|
@@ -8952,6 +8964,23 @@ proto.sniippaymentmethodsserviceapi.PaymentMethod.prototype.hasApplepaydetail =
|
|
|
8952
8964
|
};
|
|
8953
8965
|
|
|
8954
8966
|
|
|
8967
|
+
/**
|
|
8968
|
+
* optional bool isPrepaid = 9;
|
|
8969
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
8970
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
8971
|
+
* @return {boolean}
|
|
8972
|
+
*/
|
|
8973
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethod.prototype.getIsprepaid = function() {
|
|
8974
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 9, false));
|
|
8975
|
+
};
|
|
8976
|
+
|
|
8977
|
+
|
|
8978
|
+
/** @param {boolean} value */
|
|
8979
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethod.prototype.setIsprepaid = function(value) {
|
|
8980
|
+
jspb.Message.setField(this, 9, value);
|
|
8981
|
+
};
|
|
8982
|
+
|
|
8983
|
+
|
|
8955
8984
|
|
|
8956
8985
|
/**
|
|
8957
8986
|
* Generated by JsPbCodeGenerator.
|