@sniipwebmaster/transaction-service-client-grpcweb-ts 26.4.14605 → 26.4.14616
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.
|
@@ -4687,6 +4687,9 @@ export class TransactionDetails extends jspb.Message {
|
|
|
4687
4687
|
getBillertimezoneabbr(): string;
|
|
4688
4688
|
setBillertimezoneabbr(value: string): TransactionDetails;
|
|
4689
4689
|
|
|
4690
|
+
getLoyaltymembershipid(): number;
|
|
4691
|
+
setLoyaltymembershipid(value: number): TransactionDetails;
|
|
4692
|
+
|
|
4690
4693
|
serializeBinary(): Uint8Array;
|
|
4691
4694
|
toObject(includeInstance?: boolean): TransactionDetails.AsObject;
|
|
4692
4695
|
static toObject(includeInstance: boolean, msg: TransactionDetails): TransactionDetails.AsObject;
|
|
@@ -4776,6 +4779,7 @@ export namespace TransactionDetails {
|
|
|
4776
4779
|
actionurlbase64: string,
|
|
4777
4780
|
billertimezone: string,
|
|
4778
4781
|
billertimezoneabbr: string,
|
|
4782
|
+
loyaltymembershipid: number,
|
|
4779
4783
|
}
|
|
4780
4784
|
}
|
|
4781
4785
|
|
|
@@ -36513,7 +36513,8 @@ proto.sniiptransactionapi.TransactionDetails.toObject = function(includeInstance
|
|
|
36513
36513
|
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 78, 0),
|
|
36514
36514
|
actionurlbase64: jspb.Message.getFieldWithDefault(msg, 79, ""),
|
|
36515
36515
|
billertimezone: jspb.Message.getFieldWithDefault(msg, 80, ""),
|
|
36516
|
-
billertimezoneabbr: jspb.Message.getFieldWithDefault(msg, 81, "")
|
|
36516
|
+
billertimezoneabbr: jspb.Message.getFieldWithDefault(msg, 81, ""),
|
|
36517
|
+
loyaltymembershipid: jspb.Message.getFieldWithDefault(msg, 82, 0)
|
|
36517
36518
|
};
|
|
36518
36519
|
|
|
36519
36520
|
if (includeInstance) {
|
|
@@ -36868,6 +36869,10 @@ proto.sniiptransactionapi.TransactionDetails.deserializeBinaryFromReader = funct
|
|
|
36868
36869
|
var value = /** @type {string} */ (reader.readString());
|
|
36869
36870
|
msg.setBillertimezoneabbr(value);
|
|
36870
36871
|
break;
|
|
36872
|
+
case 82:
|
|
36873
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
36874
|
+
msg.setLoyaltymembershipid(value);
|
|
36875
|
+
break;
|
|
36871
36876
|
default:
|
|
36872
36877
|
reader.skipField();
|
|
36873
36878
|
break;
|
|
@@ -37452,6 +37457,13 @@ proto.sniiptransactionapi.TransactionDetails.serializeBinaryToWriter = function(
|
|
|
37452
37457
|
f
|
|
37453
37458
|
);
|
|
37454
37459
|
}
|
|
37460
|
+
f = message.getLoyaltymembershipid();
|
|
37461
|
+
if (f !== 0) {
|
|
37462
|
+
writer.writeInt64(
|
|
37463
|
+
82,
|
|
37464
|
+
f
|
|
37465
|
+
);
|
|
37466
|
+
}
|
|
37455
37467
|
};
|
|
37456
37468
|
|
|
37457
37469
|
|
|
@@ -38916,6 +38928,24 @@ proto.sniiptransactionapi.TransactionDetails.prototype.setBillertimezoneabbr = f
|
|
|
38916
38928
|
};
|
|
38917
38929
|
|
|
38918
38930
|
|
|
38931
|
+
/**
|
|
38932
|
+
* optional int64 loyaltyMembershipId = 82;
|
|
38933
|
+
* @return {number}
|
|
38934
|
+
*/
|
|
38935
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.getLoyaltymembershipid = function() {
|
|
38936
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 82, 0));
|
|
38937
|
+
};
|
|
38938
|
+
|
|
38939
|
+
|
|
38940
|
+
/**
|
|
38941
|
+
* @param {number} value
|
|
38942
|
+
* @return {!proto.sniiptransactionapi.TransactionDetails} returns this
|
|
38943
|
+
*/
|
|
38944
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.setLoyaltymembershipid = function(value) {
|
|
38945
|
+
return jspb.Message.setProto3IntField(this, 82, value);
|
|
38946
|
+
};
|
|
38947
|
+
|
|
38948
|
+
|
|
38919
38949
|
|
|
38920
38950
|
|
|
38921
38951
|
|