@sniipwebmaster/payment-methods-client-grpcweb 25.5.6931 → 25.5.6940
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
|
@@ -17087,7 +17087,8 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.toObject = f
|
|
|
17087
17087
|
bankaccount: (f = msg.getBankaccount()) && proto.sniippaymentmethodsserviceapi.BankAccount.toObject(includeInstance, f),
|
|
17088
17088
|
applepaydetail: (f = msg.getApplepaydetail()) && proto.sniippaymentmethodsserviceapi.ApplePayDetail.toObject(includeInstance, f),
|
|
17089
17089
|
googlepaydetail: (f = msg.getGooglepaydetail()) && proto.sniippaymentmethodsserviceapi.GooglePayDetail.toObject(includeInstance, f),
|
|
17090
|
-
wexcarddetail: (f = msg.getWexcarddetail()) && proto.sniippaymentmethodsserviceapi.WexCardDetail.toObject(includeInstance, f)
|
|
17090
|
+
wexcarddetail: (f = msg.getWexcarddetail()) && proto.sniippaymentmethodsserviceapi.WexCardDetail.toObject(includeInstance, f),
|
|
17091
|
+
alternativepaymentmethoddetail: (f = msg.getAlternativepaymentmethoddetail()) && proto.sniippaymentmethodsserviceapi.AlternativePaymentMethodDetail.toObject(includeInstance, f)
|
|
17091
17092
|
};
|
|
17092
17093
|
|
|
17093
17094
|
if (includeInstance) {
|
|
@@ -17162,6 +17163,11 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.deserializeB
|
|
|
17162
17163
|
reader.readMessage(value,proto.sniippaymentmethodsserviceapi.WexCardDetail.deserializeBinaryFromReader);
|
|
17163
17164
|
msg.setWexcarddetail(value);
|
|
17164
17165
|
break;
|
|
17166
|
+
case 9:
|
|
17167
|
+
var value = new proto.sniippaymentmethodsserviceapi.AlternativePaymentMethodDetail;
|
|
17168
|
+
reader.readMessage(value,proto.sniippaymentmethodsserviceapi.AlternativePaymentMethodDetail.deserializeBinaryFromReader);
|
|
17169
|
+
msg.setAlternativepaymentmethoddetail(value);
|
|
17170
|
+
break;
|
|
17165
17171
|
default:
|
|
17166
17172
|
reader.skipField();
|
|
17167
17173
|
break;
|
|
@@ -17253,6 +17259,14 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.serializeBin
|
|
|
17253
17259
|
proto.sniippaymentmethodsserviceapi.WexCardDetail.serializeBinaryToWriter
|
|
17254
17260
|
);
|
|
17255
17261
|
}
|
|
17262
|
+
f = message.getAlternativepaymentmethoddetail();
|
|
17263
|
+
if (f != null) {
|
|
17264
|
+
writer.writeMessage(
|
|
17265
|
+
9,
|
|
17266
|
+
f,
|
|
17267
|
+
proto.sniippaymentmethodsserviceapi.AlternativePaymentMethodDetail.serializeBinaryToWriter
|
|
17268
|
+
);
|
|
17269
|
+
}
|
|
17256
17270
|
};
|
|
17257
17271
|
|
|
17258
17272
|
|
|
@@ -17514,6 +17528,43 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.prototype.ha
|
|
|
17514
17528
|
};
|
|
17515
17529
|
|
|
17516
17530
|
|
|
17531
|
+
/**
|
|
17532
|
+
* optional AlternativePaymentMethodDetail alternativePaymentMethodDetail = 9;
|
|
17533
|
+
* @return {?proto.sniippaymentmethodsserviceapi.AlternativePaymentMethodDetail}
|
|
17534
|
+
*/
|
|
17535
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.prototype.getAlternativepaymentmethoddetail = function() {
|
|
17536
|
+
return /** @type{?proto.sniippaymentmethodsserviceapi.AlternativePaymentMethodDetail} */ (
|
|
17537
|
+
jspb.Message.getWrapperField(this, proto.sniippaymentmethodsserviceapi.AlternativePaymentMethodDetail, 9));
|
|
17538
|
+
};
|
|
17539
|
+
|
|
17540
|
+
|
|
17541
|
+
/**
|
|
17542
|
+
* @param {?proto.sniippaymentmethodsserviceapi.AlternativePaymentMethodDetail|undefined} value
|
|
17543
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse} returns this
|
|
17544
|
+
*/
|
|
17545
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.prototype.setAlternativepaymentmethoddetail = function(value) {
|
|
17546
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
17547
|
+
};
|
|
17548
|
+
|
|
17549
|
+
|
|
17550
|
+
/**
|
|
17551
|
+
* Clears the message field making it undefined.
|
|
17552
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse} returns this
|
|
17553
|
+
*/
|
|
17554
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.prototype.clearAlternativepaymentmethoddetail = function() {
|
|
17555
|
+
return this.setAlternativepaymentmethoddetail(undefined);
|
|
17556
|
+
};
|
|
17557
|
+
|
|
17558
|
+
|
|
17559
|
+
/**
|
|
17560
|
+
* Returns whether this field is set.
|
|
17561
|
+
* @return {boolean}
|
|
17562
|
+
*/
|
|
17563
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodForPaymentResponse.prototype.hasAlternativepaymentmethoddetail = function() {
|
|
17564
|
+
return jspb.Message.getField(this, 9) != null;
|
|
17565
|
+
};
|
|
17566
|
+
|
|
17567
|
+
|
|
17517
17568
|
|
|
17518
17569
|
/**
|
|
17519
17570
|
* List of repeated fields within this message type.
|