@sniipwebmaster/payment-methods-client-grpcweb 26.2.7785 → 26.2.7803
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 +52 -1
- package/package.json +1 -1
|
@@ -20345,7 +20345,8 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.toObject = f
|
|
|
20345
20345
|
googlepaydetail: (f = msg.getGooglepaydetail()) && proto.sniippaymentmethodsserviceapi.GooglePayDetail.toObject(includeInstance, f),
|
|
20346
20346
|
wexcarddetail: (f = msg.getWexcarddetail()) && proto.sniippaymentmethodsserviceapi.WexCardDetail.toObject(includeInstance, f),
|
|
20347
20347
|
alternativepaymentmethoddetail: (f = msg.getAlternativepaymentmethoddetail()) && proto.sniippaymentmethodsserviceapi.AlternativePaymentMethodDetail.toObject(includeInstance, f),
|
|
20348
|
-
paytobankaccount: (f = msg.getPaytobankaccount()) && proto.sniippaymentmethodsserviceapi.PaytoBankAccount.toObject(includeInstance, f)
|
|
20348
|
+
paytobankaccount: (f = msg.getPaytobankaccount()) && proto.sniippaymentmethodsserviceapi.PaytoBankAccount.toObject(includeInstance, f),
|
|
20349
|
+
click2paydetail: (f = msg.getClick2paydetail()) && proto.sniippaymentmethodsserviceapi.Click2PayDetail.toObject(includeInstance, f)
|
|
20349
20350
|
};
|
|
20350
20351
|
|
|
20351
20352
|
if (includeInstance) {
|
|
@@ -20430,6 +20431,11 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.deserializeB
|
|
|
20430
20431
|
reader.readMessage(value,proto.sniippaymentmethodsserviceapi.PaytoBankAccount.deserializeBinaryFromReader);
|
|
20431
20432
|
msg.setPaytobankaccount(value);
|
|
20432
20433
|
break;
|
|
20434
|
+
case 11:
|
|
20435
|
+
var value = new proto.sniippaymentmethodsserviceapi.Click2PayDetail;
|
|
20436
|
+
reader.readMessage(value,proto.sniippaymentmethodsserviceapi.Click2PayDetail.deserializeBinaryFromReader);
|
|
20437
|
+
msg.setClick2paydetail(value);
|
|
20438
|
+
break;
|
|
20433
20439
|
default:
|
|
20434
20440
|
reader.skipField();
|
|
20435
20441
|
break;
|
|
@@ -20537,6 +20543,14 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.serializeBin
|
|
|
20537
20543
|
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.serializeBinaryToWriter
|
|
20538
20544
|
);
|
|
20539
20545
|
}
|
|
20546
|
+
f = message.getClick2paydetail();
|
|
20547
|
+
if (f != null) {
|
|
20548
|
+
writer.writeMessage(
|
|
20549
|
+
11,
|
|
20550
|
+
f,
|
|
20551
|
+
proto.sniippaymentmethodsserviceapi.Click2PayDetail.serializeBinaryToWriter
|
|
20552
|
+
);
|
|
20553
|
+
}
|
|
20540
20554
|
};
|
|
20541
20555
|
|
|
20542
20556
|
|
|
@@ -20872,6 +20886,43 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.prototype.ha
|
|
|
20872
20886
|
};
|
|
20873
20887
|
|
|
20874
20888
|
|
|
20889
|
+
/**
|
|
20890
|
+
* optional Click2PayDetail click2PayDetail = 11;
|
|
20891
|
+
* @return {?proto.sniippaymentmethodsserviceapi.Click2PayDetail}
|
|
20892
|
+
*/
|
|
20893
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.prototype.getClick2paydetail = function() {
|
|
20894
|
+
return /** @type{?proto.sniippaymentmethodsserviceapi.Click2PayDetail} */ (
|
|
20895
|
+
jspb.Message.getWrapperField(this, proto.sniippaymentmethodsserviceapi.Click2PayDetail, 11));
|
|
20896
|
+
};
|
|
20897
|
+
|
|
20898
|
+
|
|
20899
|
+
/**
|
|
20900
|
+
* @param {?proto.sniippaymentmethodsserviceapi.Click2PayDetail|undefined} value
|
|
20901
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse} returns this
|
|
20902
|
+
*/
|
|
20903
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.prototype.setClick2paydetail = function(value) {
|
|
20904
|
+
return jspb.Message.setWrapperField(this, 11, value);
|
|
20905
|
+
};
|
|
20906
|
+
|
|
20907
|
+
|
|
20908
|
+
/**
|
|
20909
|
+
* Clears the message field making it undefined.
|
|
20910
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse} returns this
|
|
20911
|
+
*/
|
|
20912
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.prototype.clearClick2paydetail = function() {
|
|
20913
|
+
return this.setClick2paydetail(undefined);
|
|
20914
|
+
};
|
|
20915
|
+
|
|
20916
|
+
|
|
20917
|
+
/**
|
|
20918
|
+
* Returns whether this field is set.
|
|
20919
|
+
* @return {boolean}
|
|
20920
|
+
*/
|
|
20921
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.prototype.hasClick2paydetail = function() {
|
|
20922
|
+
return jspb.Message.getField(this, 11) != null;
|
|
20923
|
+
};
|
|
20924
|
+
|
|
20925
|
+
|
|
20875
20926
|
|
|
20876
20927
|
/**
|
|
20877
20928
|
* List of repeated fields within this message type.
|