@sniipwebmaster/user-service-client-grpcweb-ts 26.2.14060 → 26.3.14129
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.
|
@@ -2349,6 +2349,9 @@ export class KycUser extends jspb.Message {
|
|
|
2349
2349
|
getExternaldocumentssummarystatus(): string;
|
|
2350
2350
|
setExternaldocumentssummarystatus(value: string): KycUser;
|
|
2351
2351
|
|
|
2352
|
+
getSessionid(): string;
|
|
2353
|
+
setSessionid(value: string): KycUser;
|
|
2354
|
+
|
|
2352
2355
|
serializeBinary(): Uint8Array;
|
|
2353
2356
|
toObject(includeInstance?: boolean): KycUser.AsObject;
|
|
2354
2357
|
static toObject(includeInstance: boolean, msg: KycUser): KycUser.AsObject;
|
|
@@ -2381,6 +2384,7 @@ export namespace KycUser {
|
|
|
2381
2384
|
externalusername: string,
|
|
2382
2385
|
internaldocumentssummarystatus: string,
|
|
2383
2386
|
externaldocumentssummarystatus: string,
|
|
2387
|
+
sessionid: string,
|
|
2384
2388
|
}
|
|
2385
2389
|
}
|
|
2386
2390
|
|
|
@@ -21931,7 +21931,8 @@ proto.sniipuserservice.KycUser.toObject = function(includeInstance, msg) {
|
|
|
21931
21931
|
isnamematching: jspb.Message.getBooleanFieldWithDefault(msg, 19, false),
|
|
21932
21932
|
externalusername: jspb.Message.getFieldWithDefault(msg, 20, ""),
|
|
21933
21933
|
internaldocumentssummarystatus: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
|
21934
|
-
externaldocumentssummarystatus: jspb.Message.getFieldWithDefault(msg, 22, "")
|
|
21934
|
+
externaldocumentssummarystatus: jspb.Message.getFieldWithDefault(msg, 22, ""),
|
|
21935
|
+
sessionid: jspb.Message.getFieldWithDefault(msg, 23, "")
|
|
21935
21936
|
};
|
|
21936
21937
|
|
|
21937
21938
|
if (includeInstance) {
|
|
@@ -22056,6 +22057,10 @@ proto.sniipuserservice.KycUser.deserializeBinaryFromReader = function(msg, reade
|
|
|
22056
22057
|
var value = /** @type {string} */ (reader.readString());
|
|
22057
22058
|
msg.setExternaldocumentssummarystatus(value);
|
|
22058
22059
|
break;
|
|
22060
|
+
case 23:
|
|
22061
|
+
var value = /** @type {string} */ (reader.readString());
|
|
22062
|
+
msg.setSessionid(value);
|
|
22063
|
+
break;
|
|
22059
22064
|
default:
|
|
22060
22065
|
reader.skipField();
|
|
22061
22066
|
break;
|
|
@@ -22239,6 +22244,13 @@ proto.sniipuserservice.KycUser.serializeBinaryToWriter = function(message, write
|
|
|
22239
22244
|
f
|
|
22240
22245
|
);
|
|
22241
22246
|
}
|
|
22247
|
+
f = message.getSessionid();
|
|
22248
|
+
if (f.length > 0) {
|
|
22249
|
+
writer.writeString(
|
|
22250
|
+
23,
|
|
22251
|
+
f
|
|
22252
|
+
);
|
|
22253
|
+
}
|
|
22242
22254
|
};
|
|
22243
22255
|
|
|
22244
22256
|
|
|
@@ -22657,6 +22669,24 @@ proto.sniipuserservice.KycUser.prototype.setExternaldocumentssummarystatus = fun
|
|
|
22657
22669
|
};
|
|
22658
22670
|
|
|
22659
22671
|
|
|
22672
|
+
/**
|
|
22673
|
+
* optional string sessionId = 23;
|
|
22674
|
+
* @return {string}
|
|
22675
|
+
*/
|
|
22676
|
+
proto.sniipuserservice.KycUser.prototype.getSessionid = function() {
|
|
22677
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 23, ""));
|
|
22678
|
+
};
|
|
22679
|
+
|
|
22680
|
+
|
|
22681
|
+
/**
|
|
22682
|
+
* @param {string} value
|
|
22683
|
+
* @return {!proto.sniipuserservice.KycUser} returns this
|
|
22684
|
+
*/
|
|
22685
|
+
proto.sniipuserservice.KycUser.prototype.setSessionid = function(value) {
|
|
22686
|
+
return jspb.Message.setProto3StringField(this, 23, value);
|
|
22687
|
+
};
|
|
22688
|
+
|
|
22689
|
+
|
|
22660
22690
|
|
|
22661
22691
|
|
|
22662
22692
|
|