@sniipwebmaster/transaction-service-client-grpcweb-ts 26.5.14751 → 26.5.14773
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.
|
@@ -3278,6 +3278,9 @@ export class PaymentDetailsResponse extends jspb.Message {
|
|
|
3278
3278
|
getDisclaimertext(): string;
|
|
3279
3279
|
setDisclaimertext(value: string): PaymentDetailsResponse;
|
|
3280
3280
|
|
|
3281
|
+
getWasmembershipfallbackapplied(): boolean;
|
|
3282
|
+
setWasmembershipfallbackapplied(value: boolean): PaymentDetailsResponse;
|
|
3283
|
+
|
|
3281
3284
|
serializeBinary(): Uint8Array;
|
|
3282
3285
|
toObject(includeInstance?: boolean): PaymentDetailsResponse.AsObject;
|
|
3283
3286
|
static toObject(includeInstance: boolean, msg: PaymentDetailsResponse): PaymentDetailsResponse.AsObject;
|
|
@@ -3328,6 +3331,7 @@ export namespace PaymentDetailsResponse {
|
|
|
3328
3331
|
loyaltyprogrameligible: boolean,
|
|
3329
3332
|
hypotheticalprogramearn?: HypotheticalProgramEarn.AsObject,
|
|
3330
3333
|
disclaimertext: string,
|
|
3334
|
+
wasmembershipfallbackapplied: boolean,
|
|
3331
3335
|
}
|
|
3332
3336
|
|
|
3333
3337
|
export enum ApplepaydetailsCase {
|
|
@@ -26799,7 +26799,8 @@ proto.sniiptransactionapi.PaymentDetailsResponse.toObject = function(includeInst
|
|
|
26799
26799
|
loyaltyprogramearncardbody: jspb.Message.getFieldWithDefault(msg, 37, ""),
|
|
26800
26800
|
loyaltyprogrameligible: jspb.Message.getBooleanFieldWithDefault(msg, 38, false),
|
|
26801
26801
|
hypotheticalprogramearn: (f = msg.getHypotheticalprogramearn()) && proto.sniiptransactionapi.HypotheticalProgramEarn.toObject(includeInstance, f),
|
|
26802
|
-
disclaimertext: jspb.Message.getFieldWithDefault(msg, 40, "")
|
|
26802
|
+
disclaimertext: jspb.Message.getFieldWithDefault(msg, 40, ""),
|
|
26803
|
+
wasmembershipfallbackapplied: jspb.Message.getBooleanFieldWithDefault(msg, 41, false)
|
|
26803
26804
|
};
|
|
26804
26805
|
|
|
26805
26806
|
if (includeInstance) {
|
|
@@ -27000,6 +27001,10 @@ proto.sniiptransactionapi.PaymentDetailsResponse.deserializeBinaryFromReader = f
|
|
|
27000
27001
|
var value = /** @type {string} */ (reader.readString());
|
|
27001
27002
|
msg.setDisclaimertext(value);
|
|
27002
27003
|
break;
|
|
27004
|
+
case 41:
|
|
27005
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
27006
|
+
msg.setWasmembershipfallbackapplied(value);
|
|
27007
|
+
break;
|
|
27003
27008
|
default:
|
|
27004
27009
|
reader.skipField();
|
|
27005
27010
|
break;
|
|
@@ -27313,6 +27318,13 @@ proto.sniiptransactionapi.PaymentDetailsResponse.serializeBinaryToWriter = funct
|
|
|
27313
27318
|
f
|
|
27314
27319
|
);
|
|
27315
27320
|
}
|
|
27321
|
+
f = message.getWasmembershipfallbackapplied();
|
|
27322
|
+
if (f) {
|
|
27323
|
+
writer.writeBool(
|
|
27324
|
+
41,
|
|
27325
|
+
f
|
|
27326
|
+
);
|
|
27327
|
+
}
|
|
27316
27328
|
};
|
|
27317
27329
|
|
|
27318
27330
|
|
|
@@ -28112,6 +28124,24 @@ proto.sniiptransactionapi.PaymentDetailsResponse.prototype.setDisclaimertext = f
|
|
|
28112
28124
|
};
|
|
28113
28125
|
|
|
28114
28126
|
|
|
28127
|
+
/**
|
|
28128
|
+
* optional bool wasMembershipFallbackApplied = 41;
|
|
28129
|
+
* @return {boolean}
|
|
28130
|
+
*/
|
|
28131
|
+
proto.sniiptransactionapi.PaymentDetailsResponse.prototype.getWasmembershipfallbackapplied = function() {
|
|
28132
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 41, false));
|
|
28133
|
+
};
|
|
28134
|
+
|
|
28135
|
+
|
|
28136
|
+
/**
|
|
28137
|
+
* @param {boolean} value
|
|
28138
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsResponse} returns this
|
|
28139
|
+
*/
|
|
28140
|
+
proto.sniiptransactionapi.PaymentDetailsResponse.prototype.setWasmembershipfallbackapplied = function(value) {
|
|
28141
|
+
return jspb.Message.setProto3BooleanField(this, 41, value);
|
|
28142
|
+
};
|
|
28143
|
+
|
|
28144
|
+
|
|
28115
28145
|
|
|
28116
28146
|
/**
|
|
28117
28147
|
* List of repeated fields within this message type.
|