@sniipwebmaster/transaction-service-client-grpcweb-ts 25.7.12931 → 25.7.12949
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.
|
@@ -3111,6 +3111,9 @@ export class PostPayBillCreditCardInternalRequest extends jspb.Message {
|
|
|
3111
3111
|
getReservedrewarditemid(): number;
|
|
3112
3112
|
setReservedrewarditemid(value: number): PostPayBillCreditCardInternalRequest;
|
|
3113
3113
|
|
|
3114
|
+
getLoyaltyoptionid(): number;
|
|
3115
|
+
setLoyaltyoptionid(value: number): PostPayBillCreditCardInternalRequest;
|
|
3116
|
+
|
|
3114
3117
|
serializeBinary(): Uint8Array;
|
|
3115
3118
|
toObject(includeInstance?: boolean): PostPayBillCreditCardInternalRequest.AsObject;
|
|
3116
3119
|
static toObject(includeInstance: boolean, msg: PostPayBillCreditCardInternalRequest): PostPayBillCreditCardInternalRequest.AsObject;
|
|
@@ -3138,6 +3141,7 @@ export namespace PostPayBillCreditCardInternalRequest {
|
|
|
3138
3141
|
rewardamount: number,
|
|
3139
3142
|
ipaddress: string,
|
|
3140
3143
|
reservedrewarditemid: number,
|
|
3144
|
+
loyaltyoptionid: number,
|
|
3141
3145
|
}
|
|
3142
3146
|
}
|
|
3143
3147
|
|
|
@@ -25777,7 +25777,8 @@ proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.toObject = functi
|
|
|
25777
25777
|
paymentmethodid: jspb.Message.getFieldWithDefault(msg, 15, 0),
|
|
25778
25778
|
rewardamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 22, 0.0),
|
|
25779
25779
|
ipaddress: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
25780
|
-
reservedrewarditemid: jspb.Message.getFieldWithDefault(msg, 24, 0)
|
|
25780
|
+
reservedrewarditemid: jspb.Message.getFieldWithDefault(msg, 24, 0),
|
|
25781
|
+
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 25, 0)
|
|
25781
25782
|
};
|
|
25782
25783
|
|
|
25783
25784
|
if (includeInstance) {
|
|
@@ -25882,6 +25883,10 @@ proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.deserializeBinary
|
|
|
25882
25883
|
var value = /** @type {number} */ (reader.readInt64());
|
|
25883
25884
|
msg.setReservedrewarditemid(value);
|
|
25884
25885
|
break;
|
|
25886
|
+
case 25:
|
|
25887
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
25888
|
+
msg.setLoyaltyoptionid(value);
|
|
25889
|
+
break;
|
|
25885
25890
|
default:
|
|
25886
25891
|
reader.skipField();
|
|
25887
25892
|
break;
|
|
@@ -26030,6 +26035,13 @@ proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.serializeBinaryTo
|
|
|
26030
26035
|
f
|
|
26031
26036
|
);
|
|
26032
26037
|
}
|
|
26038
|
+
f = message.getLoyaltyoptionid();
|
|
26039
|
+
if (f !== 0) {
|
|
26040
|
+
writer.writeInt64(
|
|
26041
|
+
25,
|
|
26042
|
+
f
|
|
26043
|
+
);
|
|
26044
|
+
}
|
|
26033
26045
|
};
|
|
26034
26046
|
|
|
26035
26047
|
|
|
@@ -26339,6 +26351,24 @@ proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.prototype.setRese
|
|
|
26339
26351
|
};
|
|
26340
26352
|
|
|
26341
26353
|
|
|
26354
|
+
/**
|
|
26355
|
+
* optional int64 loyaltyOptionId = 25;
|
|
26356
|
+
* @return {number}
|
|
26357
|
+
*/
|
|
26358
|
+
proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.prototype.getLoyaltyoptionid = function() {
|
|
26359
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 25, 0));
|
|
26360
|
+
};
|
|
26361
|
+
|
|
26362
|
+
|
|
26363
|
+
/**
|
|
26364
|
+
* @param {number} value
|
|
26365
|
+
* @return {!proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest} returns this
|
|
26366
|
+
*/
|
|
26367
|
+
proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.prototype.setLoyaltyoptionid = function(value) {
|
|
26368
|
+
return jspb.Message.setProto3IntField(this, 25, value);
|
|
26369
|
+
};
|
|
26370
|
+
|
|
26371
|
+
|
|
26342
26372
|
|
|
26343
26373
|
|
|
26344
26374
|
|