@sniipwebmaster/transaction-service-client-grpcweb-ts 26.4.14561 → 26.4.14583
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.
|
@@ -2788,6 +2788,9 @@ export class PaymentDetailsBulkRequest extends jspb.Message {
|
|
|
2788
2788
|
getIsinstalmentplan(): boolean;
|
|
2789
2789
|
setIsinstalmentplan(value: boolean): PaymentDetailsBulkRequest;
|
|
2790
2790
|
|
|
2791
|
+
getLoyaltyoptionid(): number;
|
|
2792
|
+
setLoyaltyoptionid(value: number): PaymentDetailsBulkRequest;
|
|
2793
|
+
|
|
2791
2794
|
serializeBinary(): Uint8Array;
|
|
2792
2795
|
toObject(includeInstance?: boolean): PaymentDetailsBulkRequest.AsObject;
|
|
2793
2796
|
static toObject(includeInstance: boolean, msg: PaymentDetailsBulkRequest): PaymentDetailsBulkRequest.AsObject;
|
|
@@ -2811,6 +2814,7 @@ export namespace PaymentDetailsBulkRequest {
|
|
|
2811
2814
|
bulkitemList: Array<BulkItem.AsObject>,
|
|
2812
2815
|
usermembershipid: number,
|
|
2813
2816
|
isinstalmentplan: boolean,
|
|
2817
|
+
loyaltyoptionid: number,
|
|
2814
2818
|
}
|
|
2815
2819
|
|
|
2816
2820
|
export enum PaymentDetailsBulkRequestPaymentMethod {
|
|
@@ -23864,7 +23864,8 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.toObject = function(includeI
|
|
|
23864
23864
|
bulkitemList: jspb.Message.toObjectList(msg.getBulkitemList(),
|
|
23865
23865
|
proto.sniiptransactionapi.BulkItem.toObject, includeInstance),
|
|
23866
23866
|
usermembershipid: jspb.Message.getFieldWithDefault(msg, 14, 0),
|
|
23867
|
-
isinstalmentplan: jspb.Message.getBooleanFieldWithDefault(msg, 15, false)
|
|
23867
|
+
isinstalmentplan: jspb.Message.getBooleanFieldWithDefault(msg, 15, false),
|
|
23868
|
+
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 16, 0)
|
|
23868
23869
|
};
|
|
23869
23870
|
|
|
23870
23871
|
if (includeInstance) {
|
|
@@ -23954,6 +23955,10 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.deserializeBinaryFromReader
|
|
|
23954
23955
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
23955
23956
|
msg.setIsinstalmentplan(value);
|
|
23956
23957
|
break;
|
|
23958
|
+
case 16:
|
|
23959
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
23960
|
+
msg.setLoyaltyoptionid(value);
|
|
23961
|
+
break;
|
|
23957
23962
|
default:
|
|
23958
23963
|
reader.skipField();
|
|
23959
23964
|
break;
|
|
@@ -24075,6 +24080,13 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.serializeBinaryToWriter = fu
|
|
|
24075
24080
|
f
|
|
24076
24081
|
);
|
|
24077
24082
|
}
|
|
24083
|
+
f = message.getLoyaltyoptionid();
|
|
24084
|
+
if (f !== 0) {
|
|
24085
|
+
writer.writeInt64(
|
|
24086
|
+
16,
|
|
24087
|
+
f
|
|
24088
|
+
);
|
|
24089
|
+
}
|
|
24078
24090
|
};
|
|
24079
24091
|
|
|
24080
24092
|
|
|
@@ -24346,6 +24358,24 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.prototype.setIsinstalmentpla
|
|
|
24346
24358
|
};
|
|
24347
24359
|
|
|
24348
24360
|
|
|
24361
|
+
/**
|
|
24362
|
+
* optional int64 loyaltyOptionId = 16;
|
|
24363
|
+
* @return {number}
|
|
24364
|
+
*/
|
|
24365
|
+
proto.sniiptransactionapi.PaymentDetailsBulkRequest.prototype.getLoyaltyoptionid = function() {
|
|
24366
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 16, 0));
|
|
24367
|
+
};
|
|
24368
|
+
|
|
24369
|
+
|
|
24370
|
+
/**
|
|
24371
|
+
* @param {number} value
|
|
24372
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsBulkRequest} returns this
|
|
24373
|
+
*/
|
|
24374
|
+
proto.sniiptransactionapi.PaymentDetailsBulkRequest.prototype.setLoyaltyoptionid = function(value) {
|
|
24375
|
+
return jspb.Message.setProto3IntField(this, 16, value);
|
|
24376
|
+
};
|
|
24377
|
+
|
|
24378
|
+
|
|
24349
24379
|
|
|
24350
24380
|
/**
|
|
24351
24381
|
* List of repeated fields within this message type.
|