@sniipwebmaster/transaction-service-client-grpcweb-ts 25.8.13097 → 25.8.13115
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.
|
@@ -3126,6 +3126,9 @@ export class PostPayBillCreditCardInternalRequest extends jspb.Message {
|
|
|
3126
3126
|
getLoyaltyoptionid(): number;
|
|
3127
3127
|
setLoyaltyoptionid(value: number): PostPayBillCreditCardInternalRequest;
|
|
3128
3128
|
|
|
3129
|
+
getUsermembershipid(): number;
|
|
3130
|
+
setUsermembershipid(value: number): PostPayBillCreditCardInternalRequest;
|
|
3131
|
+
|
|
3129
3132
|
serializeBinary(): Uint8Array;
|
|
3130
3133
|
toObject(includeInstance?: boolean): PostPayBillCreditCardInternalRequest.AsObject;
|
|
3131
3134
|
static toObject(includeInstance: boolean, msg: PostPayBillCreditCardInternalRequest): PostPayBillCreditCardInternalRequest.AsObject;
|
|
@@ -3154,6 +3157,7 @@ export namespace PostPayBillCreditCardInternalRequest {
|
|
|
3154
3157
|
ipaddress: string,
|
|
3155
3158
|
reservedrewarditemid: number,
|
|
3156
3159
|
loyaltyoptionid: number,
|
|
3160
|
+
usermembershipid: number,
|
|
3157
3161
|
}
|
|
3158
3162
|
}
|
|
3159
3163
|
|
|
@@ -25868,7 +25868,8 @@ proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.toObject = functi
|
|
|
25868
25868
|
rewardamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 22, 0.0),
|
|
25869
25869
|
ipaddress: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
25870
25870
|
reservedrewarditemid: jspb.Message.getFieldWithDefault(msg, 24, 0),
|
|
25871
|
-
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 25, 0)
|
|
25871
|
+
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 25, 0),
|
|
25872
|
+
usermembershipid: jspb.Message.getFieldWithDefault(msg, 26, 0)
|
|
25872
25873
|
};
|
|
25873
25874
|
|
|
25874
25875
|
if (includeInstance) {
|
|
@@ -25977,6 +25978,10 @@ proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.deserializeBinary
|
|
|
25977
25978
|
var value = /** @type {number} */ (reader.readInt64());
|
|
25978
25979
|
msg.setLoyaltyoptionid(value);
|
|
25979
25980
|
break;
|
|
25981
|
+
case 26:
|
|
25982
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
25983
|
+
msg.setUsermembershipid(value);
|
|
25984
|
+
break;
|
|
25980
25985
|
default:
|
|
25981
25986
|
reader.skipField();
|
|
25982
25987
|
break;
|
|
@@ -26132,6 +26137,13 @@ proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.serializeBinaryTo
|
|
|
26132
26137
|
f
|
|
26133
26138
|
);
|
|
26134
26139
|
}
|
|
26140
|
+
f = message.getUsermembershipid();
|
|
26141
|
+
if (f !== 0) {
|
|
26142
|
+
writer.writeInt64(
|
|
26143
|
+
26,
|
|
26144
|
+
f
|
|
26145
|
+
);
|
|
26146
|
+
}
|
|
26135
26147
|
};
|
|
26136
26148
|
|
|
26137
26149
|
|
|
@@ -26459,6 +26471,24 @@ proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.prototype.setLoya
|
|
|
26459
26471
|
};
|
|
26460
26472
|
|
|
26461
26473
|
|
|
26474
|
+
/**
|
|
26475
|
+
* optional int64 userMembershipId = 26;
|
|
26476
|
+
* @return {number}
|
|
26477
|
+
*/
|
|
26478
|
+
proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.prototype.getUsermembershipid = function() {
|
|
26479
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 26, 0));
|
|
26480
|
+
};
|
|
26481
|
+
|
|
26482
|
+
|
|
26483
|
+
/**
|
|
26484
|
+
* @param {number} value
|
|
26485
|
+
* @return {!proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest} returns this
|
|
26486
|
+
*/
|
|
26487
|
+
proto.sniiptransactionapi.PostPayBillCreditCardInternalRequest.prototype.setUsermembershipid = function(value) {
|
|
26488
|
+
return jspb.Message.setProto3IntField(this, 26, value);
|
|
26489
|
+
};
|
|
26490
|
+
|
|
26491
|
+
|
|
26462
26492
|
|
|
26463
26493
|
|
|
26464
26494
|
|