@sniipwebmaster/transaction-service-client-grpcweb 0.2.4139 → 0.2.4149
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.
- package/dependancies/service_pb.js +28 -1
- package/package.json +1 -1
|
@@ -10456,7 +10456,8 @@ proto.sniiptransactionapi.ReceiptDetails.toObject = function(includeInstance, ms
|
|
|
10456
10456
|
description: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
10457
10457
|
sourceid: jspb.Message.getFieldWithDefault(msg, 24, 0),
|
|
10458
10458
|
category: jspb.Message.getFieldWithDefault(msg, 25, ""),
|
|
10459
|
-
fraudrisk: jspb.Message.getFieldWithDefault(msg, 26, "")
|
|
10459
|
+
fraudrisk: jspb.Message.getFieldWithDefault(msg, 26, ""),
|
|
10460
|
+
userid: jspb.Message.getFieldWithDefault(msg, 27, 0)
|
|
10460
10461
|
};
|
|
10461
10462
|
|
|
10462
10463
|
if (includeInstance) {
|
|
@@ -10598,6 +10599,10 @@ proto.sniiptransactionapi.ReceiptDetails.deserializeBinaryFromReader = function(
|
|
|
10598
10599
|
var value = /** @type {string} */ (reader.readString());
|
|
10599
10600
|
msg.setFraudrisk(value);
|
|
10600
10601
|
break;
|
|
10602
|
+
case 27:
|
|
10603
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
10604
|
+
msg.setUserid(value);
|
|
10605
|
+
break;
|
|
10601
10606
|
default:
|
|
10602
10607
|
reader.skipField();
|
|
10603
10608
|
break;
|
|
@@ -10810,6 +10815,13 @@ proto.sniiptransactionapi.ReceiptDetails.serializeBinaryToWriter = function(mess
|
|
|
10810
10815
|
f
|
|
10811
10816
|
);
|
|
10812
10817
|
}
|
|
10818
|
+
f = message.getUserid();
|
|
10819
|
+
if (f !== 0) {
|
|
10820
|
+
writer.writeInt64(
|
|
10821
|
+
27,
|
|
10822
|
+
f
|
|
10823
|
+
);
|
|
10824
|
+
}
|
|
10813
10825
|
};
|
|
10814
10826
|
|
|
10815
10827
|
|
|
@@ -11224,6 +11236,21 @@ proto.sniiptransactionapi.ReceiptDetails.prototype.setFraudrisk = function(value
|
|
|
11224
11236
|
};
|
|
11225
11237
|
|
|
11226
11238
|
|
|
11239
|
+
/**
|
|
11240
|
+
* optional int64 userId = 27;
|
|
11241
|
+
* @return {number}
|
|
11242
|
+
*/
|
|
11243
|
+
proto.sniiptransactionapi.ReceiptDetails.prototype.getUserid = function() {
|
|
11244
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 27, 0));
|
|
11245
|
+
};
|
|
11246
|
+
|
|
11247
|
+
|
|
11248
|
+
/** @param {number} value */
|
|
11249
|
+
proto.sniiptransactionapi.ReceiptDetails.prototype.setUserid = function(value) {
|
|
11250
|
+
jspb.Message.setProto3IntField(this, 27, value);
|
|
11251
|
+
};
|
|
11252
|
+
|
|
11253
|
+
|
|
11227
11254
|
|
|
11228
11255
|
/**
|
|
11229
11256
|
* Generated by JsPbCodeGenerator.
|