@sniipwebmaster/payment-methods-client-grpcweb-ts 24.11.5744 → 24.12.5769
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.
|
@@ -565,6 +565,9 @@ export class BillConfigForPayment extends jspb.Message {
|
|
|
565
565
|
getPaymentprocessor(): string;
|
|
566
566
|
setPaymentprocessor(value: string): BillConfigForPayment;
|
|
567
567
|
|
|
568
|
+
getPaymentmethodexpired(): boolean;
|
|
569
|
+
setPaymentmethodexpired(value: boolean): BillConfigForPayment;
|
|
570
|
+
|
|
568
571
|
serializeBinary(): Uint8Array;
|
|
569
572
|
toObject(includeInstance?: boolean): BillConfigForPayment.AsObject;
|
|
570
573
|
static toObject(includeInstance: boolean, msg: BillConfigForPayment): BillConfigForPayment.AsObject;
|
|
@@ -579,6 +582,7 @@ export namespace BillConfigForPayment {
|
|
|
579
582
|
canacceptpaymentmethod: boolean,
|
|
580
583
|
billconfigid: number,
|
|
581
584
|
paymentprocessor: string,
|
|
585
|
+
paymentmethodexpired: boolean,
|
|
582
586
|
}
|
|
583
587
|
}
|
|
584
588
|
|
|
@@ -6169,7 +6169,8 @@ proto.sniippaymentmethodsserviceapi.BillConfigForPayment.toObject = function(inc
|
|
|
6169
6169
|
billid: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
6170
6170
|
canacceptpaymentmethod: jspb.Message.getBooleanFieldWithDefault(msg, 2, false),
|
|
6171
6171
|
billconfigid: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
6172
|
-
paymentprocessor: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
6172
|
+
paymentprocessor: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
6173
|
+
paymentmethodexpired: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
6173
6174
|
};
|
|
6174
6175
|
|
|
6175
6176
|
if (includeInstance) {
|
|
@@ -6222,6 +6223,10 @@ proto.sniippaymentmethodsserviceapi.BillConfigForPayment.deserializeBinaryFromRe
|
|
|
6222
6223
|
var value = /** @type {string} */ (reader.readString());
|
|
6223
6224
|
msg.setPaymentprocessor(value);
|
|
6224
6225
|
break;
|
|
6226
|
+
case 5:
|
|
6227
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
6228
|
+
msg.setPaymentmethodexpired(value);
|
|
6229
|
+
break;
|
|
6225
6230
|
default:
|
|
6226
6231
|
reader.skipField();
|
|
6227
6232
|
break;
|
|
@@ -6279,6 +6284,13 @@ proto.sniippaymentmethodsserviceapi.BillConfigForPayment.serializeBinaryToWriter
|
|
|
6279
6284
|
f
|
|
6280
6285
|
);
|
|
6281
6286
|
}
|
|
6287
|
+
f = message.getPaymentmethodexpired();
|
|
6288
|
+
if (f) {
|
|
6289
|
+
writer.writeBool(
|
|
6290
|
+
5,
|
|
6291
|
+
f
|
|
6292
|
+
);
|
|
6293
|
+
}
|
|
6282
6294
|
};
|
|
6283
6295
|
|
|
6284
6296
|
|
|
@@ -6354,6 +6366,24 @@ proto.sniippaymentmethodsserviceapi.BillConfigForPayment.prototype.setPaymentpro
|
|
|
6354
6366
|
};
|
|
6355
6367
|
|
|
6356
6368
|
|
|
6369
|
+
/**
|
|
6370
|
+
* optional bool paymentMethodExpired = 5;
|
|
6371
|
+
* @return {boolean}
|
|
6372
|
+
*/
|
|
6373
|
+
proto.sniippaymentmethodsserviceapi.BillConfigForPayment.prototype.getPaymentmethodexpired = function() {
|
|
6374
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
|
|
6375
|
+
};
|
|
6376
|
+
|
|
6377
|
+
|
|
6378
|
+
/**
|
|
6379
|
+
* @param {boolean} value
|
|
6380
|
+
* @return {!proto.sniippaymentmethodsserviceapi.BillConfigForPayment} returns this
|
|
6381
|
+
*/
|
|
6382
|
+
proto.sniippaymentmethodsserviceapi.BillConfigForPayment.prototype.setPaymentmethodexpired = function(value) {
|
|
6383
|
+
return jspb.Message.setProto3BooleanField(this, 5, value);
|
|
6384
|
+
};
|
|
6385
|
+
|
|
6386
|
+
|
|
6357
6387
|
|
|
6358
6388
|
/**
|
|
6359
6389
|
* List of repeated fields within this message type.
|