@sniipwebmaster/user-service-client-grpcweb-ts 24.14.11772 → 24.14.11792
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.
|
@@ -5486,6 +5486,9 @@ export class WexAccountExistsResponse extends jspb.Message {
|
|
|
5486
5486
|
getIsexist(): boolean;
|
|
5487
5487
|
setIsexist(value: boolean): WexAccountExistsResponse;
|
|
5488
5488
|
|
|
5489
|
+
getWexaccountnumber(): string;
|
|
5490
|
+
setWexaccountnumber(value: string): WexAccountExistsResponse;
|
|
5491
|
+
|
|
5489
5492
|
serializeBinary(): Uint8Array;
|
|
5490
5493
|
toObject(includeInstance?: boolean): WexAccountExistsResponse.AsObject;
|
|
5491
5494
|
static toObject(includeInstance: boolean, msg: WexAccountExistsResponse): WexAccountExistsResponse.AsObject;
|
|
@@ -5502,6 +5505,7 @@ export namespace WexAccountExistsResponse {
|
|
|
5502
5505
|
firstname?: string,
|
|
5503
5506
|
lastname?: string,
|
|
5504
5507
|
isexist: boolean,
|
|
5508
|
+
wexaccountnumber: string,
|
|
5505
5509
|
}
|
|
5506
5510
|
|
|
5507
5511
|
export enum FirstnameCase {
|
|
@@ -44957,7 +44957,8 @@ proto.sniipuserservice.WexAccountExistsResponse.toObject = function(includeInsta
|
|
|
44957
44957
|
abn: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
44958
44958
|
firstname: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
44959
44959
|
lastname: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
44960
|
-
isexist: jspb.Message.getBooleanFieldWithDefault(msg, 6, false)
|
|
44960
|
+
isexist: jspb.Message.getBooleanFieldWithDefault(msg, 6, false),
|
|
44961
|
+
wexaccountnumber: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
44961
44962
|
};
|
|
44962
44963
|
|
|
44963
44964
|
if (includeInstance) {
|
|
@@ -45018,6 +45019,10 @@ proto.sniipuserservice.WexAccountExistsResponse.deserializeBinaryFromReader = fu
|
|
|
45018
45019
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
45019
45020
|
msg.setIsexist(value);
|
|
45020
45021
|
break;
|
|
45022
|
+
case 7:
|
|
45023
|
+
var value = /** @type {string} */ (reader.readString());
|
|
45024
|
+
msg.setWexaccountnumber(value);
|
|
45025
|
+
break;
|
|
45021
45026
|
default:
|
|
45022
45027
|
reader.skipField();
|
|
45023
45028
|
break;
|
|
@@ -45089,6 +45094,13 @@ proto.sniipuserservice.WexAccountExistsResponse.serializeBinaryToWriter = functi
|
|
|
45089
45094
|
f
|
|
45090
45095
|
);
|
|
45091
45096
|
}
|
|
45097
|
+
f = message.getWexaccountnumber();
|
|
45098
|
+
if (f.length > 0) {
|
|
45099
|
+
writer.writeString(
|
|
45100
|
+
7,
|
|
45101
|
+
f
|
|
45102
|
+
);
|
|
45103
|
+
}
|
|
45092
45104
|
};
|
|
45093
45105
|
|
|
45094
45106
|
|
|
@@ -45236,6 +45248,24 @@ proto.sniipuserservice.WexAccountExistsResponse.prototype.setIsexist = function(
|
|
|
45236
45248
|
};
|
|
45237
45249
|
|
|
45238
45250
|
|
|
45251
|
+
/**
|
|
45252
|
+
* optional string wexAccountNumber = 7;
|
|
45253
|
+
* @return {string}
|
|
45254
|
+
*/
|
|
45255
|
+
proto.sniipuserservice.WexAccountExistsResponse.prototype.getWexaccountnumber = function() {
|
|
45256
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
45257
|
+
};
|
|
45258
|
+
|
|
45259
|
+
|
|
45260
|
+
/**
|
|
45261
|
+
* @param {string} value
|
|
45262
|
+
* @return {!proto.sniipuserservice.WexAccountExistsResponse} returns this
|
|
45263
|
+
*/
|
|
45264
|
+
proto.sniipuserservice.WexAccountExistsResponse.prototype.setWexaccountnumber = function(value) {
|
|
45265
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
45266
|
+
};
|
|
45267
|
+
|
|
45268
|
+
|
|
45239
45269
|
|
|
45240
45270
|
|
|
45241
45271
|
|