mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-07 18:21:36 +00:00
The option(google.api.http) annotations can be used by for example https://github.com/grpc-ecosystem/grpc-gateway to generate a gRPC to REST proxy.
2620 lines
74 KiB
JavaScript
Vendored
2620 lines
74 KiB
JavaScript
Vendored
/**
|
|
* @fileoverview
|
|
* @enhanceable
|
|
* @public
|
|
*/
|
|
// GENERATED CODE -- DO NOT EDIT!
|
|
|
|
var jspb = require('google-protobuf');
|
|
var goog = jspb;
|
|
var global = Function('return this')();
|
|
|
|
var google_api_annotations_pb = require('../google/api/annotations_pb.js');
|
|
var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js');
|
|
var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb.js');
|
|
goog.exportSymbol('proto.api.CreateUserRequest', null, global);
|
|
goog.exportSymbol('proto.api.CreateUserResponse', null, global);
|
|
goog.exportSymbol('proto.api.DeleteUserRequest', null, global);
|
|
goog.exportSymbol('proto.api.GetUserRequest', null, global);
|
|
goog.exportSymbol('proto.api.GetUserResponse', null, global);
|
|
goog.exportSymbol('proto.api.ListUsersRequest', null, global);
|
|
goog.exportSymbol('proto.api.ListUsersResponse', null, global);
|
|
goog.exportSymbol('proto.api.UpdateUserPasswordRequest', null, global);
|
|
goog.exportSymbol('proto.api.UpdateUserRequest', null, global);
|
|
goog.exportSymbol('proto.api.User', null, global);
|
|
goog.exportSymbol('proto.api.UserListItem', null, global);
|
|
goog.exportSymbol('proto.api.UserTenant', null, global);
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.User = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
};
|
|
goog.inherits(proto.api.User, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.User.displayName = 'proto.api.User';
|
|
}
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.User.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.User.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.User} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.User.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
id: msg.getId(),
|
|
isAdmin: msg.getIsAdmin(),
|
|
isActive: msg.getIsActive(),
|
|
email: msg.getEmail(),
|
|
note: msg.getNote()
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.User}
|
|
*/
|
|
proto.api.User.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.User;
|
|
return proto.api.User.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.User} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.User}
|
|
*/
|
|
proto.api.User.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setId(value);
|
|
break;
|
|
case 4:
|
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
msg.setIsAdmin(value);
|
|
break;
|
|
case 5:
|
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
msg.setIsActive(value);
|
|
break;
|
|
case 6:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setEmail(value);
|
|
break;
|
|
case 7:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setNote(value);
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.User} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.User.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.User.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.User.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getId();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
1,
|
|
f
|
|
);
|
|
}
|
|
f = this.getIsAdmin();
|
|
if (f) {
|
|
writer.writeBool(
|
|
4,
|
|
f
|
|
);
|
|
}
|
|
f = this.getIsActive();
|
|
if (f) {
|
|
writer.writeBool(
|
|
5,
|
|
f
|
|
);
|
|
}
|
|
f = this.getEmail();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
6,
|
|
f
|
|
);
|
|
}
|
|
f = this.getNote();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
7,
|
|
f
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.User} The clone.
|
|
*/
|
|
proto.api.User.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.User} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string id = 1;
|
|
* @return {string}
|
|
*/
|
|
proto.api.User.prototype.getId = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 1, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.User.prototype.setId = function(value) {
|
|
jspb.Message.setField(this, 1, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional bool is_admin = 4;
|
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
* @return {boolean}
|
|
*/
|
|
proto.api.User.prototype.getIsAdmin = function() {
|
|
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 4, false));
|
|
};
|
|
|
|
|
|
/** @param {boolean} value */
|
|
proto.api.User.prototype.setIsAdmin = function(value) {
|
|
jspb.Message.setField(this, 4, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional bool is_active = 5;
|
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
* @return {boolean}
|
|
*/
|
|
proto.api.User.prototype.getIsActive = function() {
|
|
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 5, false));
|
|
};
|
|
|
|
|
|
/** @param {boolean} value */
|
|
proto.api.User.prototype.setIsActive = function(value) {
|
|
jspb.Message.setField(this, 5, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string email = 6;
|
|
* @return {string}
|
|
*/
|
|
proto.api.User.prototype.getEmail = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 6, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.User.prototype.setEmail = function(value) {
|
|
jspb.Message.setField(this, 6, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string note = 7;
|
|
* @return {string}
|
|
*/
|
|
proto.api.User.prototype.getNote = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 7, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.User.prototype.setNote = function(value) {
|
|
jspb.Message.setField(this, 7, value);
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.UserListItem = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
};
|
|
goog.inherits(proto.api.UserListItem, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.UserListItem.displayName = 'proto.api.UserListItem';
|
|
}
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.UserListItem.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.UserListItem.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.UserListItem} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.UserListItem.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
id: msg.getId(),
|
|
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
updatedAt: (f = msg.getUpdatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
email: msg.getEmail(),
|
|
isAdmin: msg.getIsAdmin(),
|
|
isActive: msg.getIsActive()
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.UserListItem}
|
|
*/
|
|
proto.api.UserListItem.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.UserListItem;
|
|
return proto.api.UserListItem.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.UserListItem} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.UserListItem}
|
|
*/
|
|
proto.api.UserListItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setId(value);
|
|
break;
|
|
case 2:
|
|
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
msg.setCreatedAt(value);
|
|
break;
|
|
case 3:
|
|
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
msg.setUpdatedAt(value);
|
|
break;
|
|
case 4:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setEmail(value);
|
|
break;
|
|
case 5:
|
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
msg.setIsAdmin(value);
|
|
break;
|
|
case 6:
|
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
msg.setIsActive(value);
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.UserListItem} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.UserListItem.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.UserListItem.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.UserListItem.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getId();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
1,
|
|
f
|
|
);
|
|
}
|
|
f = this.getCreatedAt();
|
|
if (f != null) {
|
|
writer.writeMessage(
|
|
2,
|
|
f,
|
|
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
);
|
|
}
|
|
f = this.getUpdatedAt();
|
|
if (f != null) {
|
|
writer.writeMessage(
|
|
3,
|
|
f,
|
|
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
);
|
|
}
|
|
f = this.getEmail();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
4,
|
|
f
|
|
);
|
|
}
|
|
f = this.getIsAdmin();
|
|
if (f) {
|
|
writer.writeBool(
|
|
5,
|
|
f
|
|
);
|
|
}
|
|
f = this.getIsActive();
|
|
if (f) {
|
|
writer.writeBool(
|
|
6,
|
|
f
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.UserListItem} The clone.
|
|
*/
|
|
proto.api.UserListItem.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.UserListItem} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string id = 1;
|
|
* @return {string}
|
|
*/
|
|
proto.api.UserListItem.prototype.getId = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 1, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.UserListItem.prototype.setId = function(value) {
|
|
jspb.Message.setField(this, 1, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional google.protobuf.Timestamp created_at = 2;
|
|
* @return {proto.google.protobuf.Timestamp}
|
|
*/
|
|
proto.api.UserListItem.prototype.getCreatedAt = function() {
|
|
return /** @type{proto.google.protobuf.Timestamp} */ (
|
|
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 2));
|
|
};
|
|
|
|
|
|
/** @param {proto.google.protobuf.Timestamp|undefined} value */
|
|
proto.api.UserListItem.prototype.setCreatedAt = function(value) {
|
|
jspb.Message.setWrapperField(this, 2, value);
|
|
};
|
|
|
|
|
|
proto.api.UserListItem.prototype.clearCreatedAt = function() {
|
|
this.setCreatedAt(undefined);
|
|
};
|
|
|
|
|
|
/**
|
|
* Returns whether this field is set.
|
|
* @return{!boolean}
|
|
*/
|
|
proto.api.UserListItem.prototype.hasCreatedAt = function() {
|
|
return jspb.Message.getField(this, 2) != null;
|
|
};
|
|
|
|
|
|
/**
|
|
* optional google.protobuf.Timestamp updated_at = 3;
|
|
* @return {proto.google.protobuf.Timestamp}
|
|
*/
|
|
proto.api.UserListItem.prototype.getUpdatedAt = function() {
|
|
return /** @type{proto.google.protobuf.Timestamp} */ (
|
|
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 3));
|
|
};
|
|
|
|
|
|
/** @param {proto.google.protobuf.Timestamp|undefined} value */
|
|
proto.api.UserListItem.prototype.setUpdatedAt = function(value) {
|
|
jspb.Message.setWrapperField(this, 3, value);
|
|
};
|
|
|
|
|
|
proto.api.UserListItem.prototype.clearUpdatedAt = function() {
|
|
this.setUpdatedAt(undefined);
|
|
};
|
|
|
|
|
|
/**
|
|
* Returns whether this field is set.
|
|
* @return{!boolean}
|
|
*/
|
|
proto.api.UserListItem.prototype.hasUpdatedAt = function() {
|
|
return jspb.Message.getField(this, 3) != null;
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string email = 4;
|
|
* @return {string}
|
|
*/
|
|
proto.api.UserListItem.prototype.getEmail = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 4, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.UserListItem.prototype.setEmail = function(value) {
|
|
jspb.Message.setField(this, 4, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional bool is_admin = 5;
|
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
* @return {boolean}
|
|
*/
|
|
proto.api.UserListItem.prototype.getIsAdmin = function() {
|
|
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 5, false));
|
|
};
|
|
|
|
|
|
/** @param {boolean} value */
|
|
proto.api.UserListItem.prototype.setIsAdmin = function(value) {
|
|
jspb.Message.setField(this, 5, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional bool is_active = 6;
|
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
* @return {boolean}
|
|
*/
|
|
proto.api.UserListItem.prototype.getIsActive = function() {
|
|
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 6, false));
|
|
};
|
|
|
|
|
|
/** @param {boolean} value */
|
|
proto.api.UserListItem.prototype.setIsActive = function(value) {
|
|
jspb.Message.setField(this, 6, value);
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.UserTenant = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
};
|
|
goog.inherits(proto.api.UserTenant, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.UserTenant.displayName = 'proto.api.UserTenant';
|
|
}
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.UserTenant.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.UserTenant.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.UserTenant} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.UserTenant.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
tenantId: msg.getTenantId(),
|
|
isAdmin: msg.getIsAdmin(),
|
|
isDeviceAdmin: msg.getIsDeviceAdmin(),
|
|
isGatewayAdmin: msg.getIsGatewayAdmin()
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.UserTenant}
|
|
*/
|
|
proto.api.UserTenant.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.UserTenant;
|
|
return proto.api.UserTenant.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.UserTenant} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.UserTenant}
|
|
*/
|
|
proto.api.UserTenant.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setTenantId(value);
|
|
break;
|
|
case 2:
|
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
msg.setIsAdmin(value);
|
|
break;
|
|
case 3:
|
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
msg.setIsDeviceAdmin(value);
|
|
break;
|
|
case 4:
|
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
msg.setIsGatewayAdmin(value);
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.UserTenant} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.UserTenant.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.UserTenant.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.UserTenant.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getTenantId();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
1,
|
|
f
|
|
);
|
|
}
|
|
f = this.getIsAdmin();
|
|
if (f) {
|
|
writer.writeBool(
|
|
2,
|
|
f
|
|
);
|
|
}
|
|
f = this.getIsDeviceAdmin();
|
|
if (f) {
|
|
writer.writeBool(
|
|
3,
|
|
f
|
|
);
|
|
}
|
|
f = this.getIsGatewayAdmin();
|
|
if (f) {
|
|
writer.writeBool(
|
|
4,
|
|
f
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.UserTenant} The clone.
|
|
*/
|
|
proto.api.UserTenant.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.UserTenant} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string tenant_id = 1;
|
|
* @return {string}
|
|
*/
|
|
proto.api.UserTenant.prototype.getTenantId = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 1, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.UserTenant.prototype.setTenantId = function(value) {
|
|
jspb.Message.setField(this, 1, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional bool is_admin = 2;
|
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
* @return {boolean}
|
|
*/
|
|
proto.api.UserTenant.prototype.getIsAdmin = function() {
|
|
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 2, false));
|
|
};
|
|
|
|
|
|
/** @param {boolean} value */
|
|
proto.api.UserTenant.prototype.setIsAdmin = function(value) {
|
|
jspb.Message.setField(this, 2, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional bool is_device_admin = 3;
|
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
* @return {boolean}
|
|
*/
|
|
proto.api.UserTenant.prototype.getIsDeviceAdmin = function() {
|
|
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 3, false));
|
|
};
|
|
|
|
|
|
/** @param {boolean} value */
|
|
proto.api.UserTenant.prototype.setIsDeviceAdmin = function(value) {
|
|
jspb.Message.setField(this, 3, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional bool is_gateway_admin = 4;
|
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
* @return {boolean}
|
|
*/
|
|
proto.api.UserTenant.prototype.getIsGatewayAdmin = function() {
|
|
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 4, false));
|
|
};
|
|
|
|
|
|
/** @param {boolean} value */
|
|
proto.api.UserTenant.prototype.setIsGatewayAdmin = function(value) {
|
|
jspb.Message.setField(this, 4, value);
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.CreateUserRequest = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, proto.api.CreateUserRequest.repeatedFields_, null);
|
|
};
|
|
goog.inherits(proto.api.CreateUserRequest, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.CreateUserRequest.displayName = 'proto.api.CreateUserRequest';
|
|
}
|
|
/**
|
|
* List of repeated fields within this message type.
|
|
* @private {!Array<number>}
|
|
* @const
|
|
*/
|
|
proto.api.CreateUserRequest.repeatedFields_ = [3];
|
|
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.CreateUserRequest.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.CreateUserRequest.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.CreateUserRequest} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.CreateUserRequest.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
user: (f = msg.getUser()) && proto.api.User.toObject(includeInstance, f),
|
|
password: msg.getPassword(),
|
|
tenantsList: jspb.Message.toObjectList(msg.getTenantsList(),
|
|
proto.api.UserTenant.toObject, includeInstance)
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.CreateUserRequest}
|
|
*/
|
|
proto.api.CreateUserRequest.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.CreateUserRequest;
|
|
return proto.api.CreateUserRequest.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.CreateUserRequest} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.CreateUserRequest}
|
|
*/
|
|
proto.api.CreateUserRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = new proto.api.User;
|
|
reader.readMessage(value,proto.api.User.deserializeBinaryFromReader);
|
|
msg.setUser(value);
|
|
break;
|
|
case 2:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setPassword(value);
|
|
break;
|
|
case 3:
|
|
var value = new proto.api.UserTenant;
|
|
reader.readMessage(value,proto.api.UserTenant.deserializeBinaryFromReader);
|
|
msg.getTenantsList().push(value);
|
|
msg.setTenantsList(msg.getTenantsList());
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.CreateUserRequest} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.CreateUserRequest.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.CreateUserRequest.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.CreateUserRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getUser();
|
|
if (f != null) {
|
|
writer.writeMessage(
|
|
1,
|
|
f,
|
|
proto.api.User.serializeBinaryToWriter
|
|
);
|
|
}
|
|
f = this.getPassword();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
2,
|
|
f
|
|
);
|
|
}
|
|
f = this.getTenantsList();
|
|
if (f.length > 0) {
|
|
writer.writeRepeatedMessage(
|
|
3,
|
|
f,
|
|
proto.api.UserTenant.serializeBinaryToWriter
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.CreateUserRequest} The clone.
|
|
*/
|
|
proto.api.CreateUserRequest.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.CreateUserRequest} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional User user = 1;
|
|
* @return {proto.api.User}
|
|
*/
|
|
proto.api.CreateUserRequest.prototype.getUser = function() {
|
|
return /** @type{proto.api.User} */ (
|
|
jspb.Message.getWrapperField(this, proto.api.User, 1));
|
|
};
|
|
|
|
|
|
/** @param {proto.api.User|undefined} value */
|
|
proto.api.CreateUserRequest.prototype.setUser = function(value) {
|
|
jspb.Message.setWrapperField(this, 1, value);
|
|
};
|
|
|
|
|
|
proto.api.CreateUserRequest.prototype.clearUser = function() {
|
|
this.setUser(undefined);
|
|
};
|
|
|
|
|
|
/**
|
|
* Returns whether this field is set.
|
|
* @return{!boolean}
|
|
*/
|
|
proto.api.CreateUserRequest.prototype.hasUser = function() {
|
|
return jspb.Message.getField(this, 1) != null;
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string password = 2;
|
|
* @return {string}
|
|
*/
|
|
proto.api.CreateUserRequest.prototype.getPassword = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 2, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.CreateUserRequest.prototype.setPassword = function(value) {
|
|
jspb.Message.setField(this, 2, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* repeated UserTenant tenants = 3;
|
|
* If you change this array by adding, removing or replacing elements, or if you
|
|
* replace the array itself, then you must call the setter to update it.
|
|
* @return {!Array.<!proto.api.UserTenant>}
|
|
*/
|
|
proto.api.CreateUserRequest.prototype.getTenantsList = function() {
|
|
return /** @type{!Array.<!proto.api.UserTenant>} */ (
|
|
jspb.Message.getRepeatedWrapperField(this, proto.api.UserTenant, 3));
|
|
};
|
|
|
|
|
|
/** @param {Array.<!proto.api.UserTenant>} value */
|
|
proto.api.CreateUserRequest.prototype.setTenantsList = function(value) {
|
|
jspb.Message.setRepeatedWrapperField(this, 3, value);
|
|
};
|
|
|
|
|
|
proto.api.CreateUserRequest.prototype.clearTenantsList = function() {
|
|
this.setTenantsList([]);
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.CreateUserResponse = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
};
|
|
goog.inherits(proto.api.CreateUserResponse, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.CreateUserResponse.displayName = 'proto.api.CreateUserResponse';
|
|
}
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.CreateUserResponse.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.CreateUserResponse.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.CreateUserResponse} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.CreateUserResponse.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
id: msg.getId()
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.CreateUserResponse}
|
|
*/
|
|
proto.api.CreateUserResponse.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.CreateUserResponse;
|
|
return proto.api.CreateUserResponse.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.CreateUserResponse} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.CreateUserResponse}
|
|
*/
|
|
proto.api.CreateUserResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setId(value);
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.CreateUserResponse} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.CreateUserResponse.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.CreateUserResponse.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.CreateUserResponse.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getId();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
1,
|
|
f
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.CreateUserResponse} The clone.
|
|
*/
|
|
proto.api.CreateUserResponse.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.CreateUserResponse} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string id = 1;
|
|
* @return {string}
|
|
*/
|
|
proto.api.CreateUserResponse.prototype.getId = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 1, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.CreateUserResponse.prototype.setId = function(value) {
|
|
jspb.Message.setField(this, 1, value);
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.GetUserRequest = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
};
|
|
goog.inherits(proto.api.GetUserRequest, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.GetUserRequest.displayName = 'proto.api.GetUserRequest';
|
|
}
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.GetUserRequest.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.GetUserRequest.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.GetUserRequest} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.GetUserRequest.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
id: msg.getId()
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.GetUserRequest}
|
|
*/
|
|
proto.api.GetUserRequest.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.GetUserRequest;
|
|
return proto.api.GetUserRequest.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.GetUserRequest} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.GetUserRequest}
|
|
*/
|
|
proto.api.GetUserRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setId(value);
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.GetUserRequest} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.GetUserRequest.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.GetUserRequest.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.GetUserRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getId();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
1,
|
|
f
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.GetUserRequest} The clone.
|
|
*/
|
|
proto.api.GetUserRequest.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.GetUserRequest} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string id = 1;
|
|
* @return {string}
|
|
*/
|
|
proto.api.GetUserRequest.prototype.getId = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 1, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.GetUserRequest.prototype.setId = function(value) {
|
|
jspb.Message.setField(this, 1, value);
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.GetUserResponse = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
};
|
|
goog.inherits(proto.api.GetUserResponse, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.GetUserResponse.displayName = 'proto.api.GetUserResponse';
|
|
}
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.GetUserResponse.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.GetUserResponse.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.GetUserResponse} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.GetUserResponse.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
user: (f = msg.getUser()) && proto.api.User.toObject(includeInstance, f),
|
|
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
updatedAt: (f = msg.getUpdatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f)
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.GetUserResponse}
|
|
*/
|
|
proto.api.GetUserResponse.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.GetUserResponse;
|
|
return proto.api.GetUserResponse.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.GetUserResponse} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.GetUserResponse}
|
|
*/
|
|
proto.api.GetUserResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = new proto.api.User;
|
|
reader.readMessage(value,proto.api.User.deserializeBinaryFromReader);
|
|
msg.setUser(value);
|
|
break;
|
|
case 2:
|
|
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
msg.setCreatedAt(value);
|
|
break;
|
|
case 3:
|
|
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
msg.setUpdatedAt(value);
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.GetUserResponse} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.GetUserResponse.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.GetUserResponse.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.GetUserResponse.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getUser();
|
|
if (f != null) {
|
|
writer.writeMessage(
|
|
1,
|
|
f,
|
|
proto.api.User.serializeBinaryToWriter
|
|
);
|
|
}
|
|
f = this.getCreatedAt();
|
|
if (f != null) {
|
|
writer.writeMessage(
|
|
2,
|
|
f,
|
|
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
);
|
|
}
|
|
f = this.getUpdatedAt();
|
|
if (f != null) {
|
|
writer.writeMessage(
|
|
3,
|
|
f,
|
|
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.GetUserResponse} The clone.
|
|
*/
|
|
proto.api.GetUserResponse.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.GetUserResponse} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional User user = 1;
|
|
* @return {proto.api.User}
|
|
*/
|
|
proto.api.GetUserResponse.prototype.getUser = function() {
|
|
return /** @type{proto.api.User} */ (
|
|
jspb.Message.getWrapperField(this, proto.api.User, 1));
|
|
};
|
|
|
|
|
|
/** @param {proto.api.User|undefined} value */
|
|
proto.api.GetUserResponse.prototype.setUser = function(value) {
|
|
jspb.Message.setWrapperField(this, 1, value);
|
|
};
|
|
|
|
|
|
proto.api.GetUserResponse.prototype.clearUser = function() {
|
|
this.setUser(undefined);
|
|
};
|
|
|
|
|
|
/**
|
|
* Returns whether this field is set.
|
|
* @return{!boolean}
|
|
*/
|
|
proto.api.GetUserResponse.prototype.hasUser = function() {
|
|
return jspb.Message.getField(this, 1) != null;
|
|
};
|
|
|
|
|
|
/**
|
|
* optional google.protobuf.Timestamp created_at = 2;
|
|
* @return {proto.google.protobuf.Timestamp}
|
|
*/
|
|
proto.api.GetUserResponse.prototype.getCreatedAt = function() {
|
|
return /** @type{proto.google.protobuf.Timestamp} */ (
|
|
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 2));
|
|
};
|
|
|
|
|
|
/** @param {proto.google.protobuf.Timestamp|undefined} value */
|
|
proto.api.GetUserResponse.prototype.setCreatedAt = function(value) {
|
|
jspb.Message.setWrapperField(this, 2, value);
|
|
};
|
|
|
|
|
|
proto.api.GetUserResponse.prototype.clearCreatedAt = function() {
|
|
this.setCreatedAt(undefined);
|
|
};
|
|
|
|
|
|
/**
|
|
* Returns whether this field is set.
|
|
* @return{!boolean}
|
|
*/
|
|
proto.api.GetUserResponse.prototype.hasCreatedAt = function() {
|
|
return jspb.Message.getField(this, 2) != null;
|
|
};
|
|
|
|
|
|
/**
|
|
* optional google.protobuf.Timestamp updated_at = 3;
|
|
* @return {proto.google.protobuf.Timestamp}
|
|
*/
|
|
proto.api.GetUserResponse.prototype.getUpdatedAt = function() {
|
|
return /** @type{proto.google.protobuf.Timestamp} */ (
|
|
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 3));
|
|
};
|
|
|
|
|
|
/** @param {proto.google.protobuf.Timestamp|undefined} value */
|
|
proto.api.GetUserResponse.prototype.setUpdatedAt = function(value) {
|
|
jspb.Message.setWrapperField(this, 3, value);
|
|
};
|
|
|
|
|
|
proto.api.GetUserResponse.prototype.clearUpdatedAt = function() {
|
|
this.setUpdatedAt(undefined);
|
|
};
|
|
|
|
|
|
/**
|
|
* Returns whether this field is set.
|
|
* @return{!boolean}
|
|
*/
|
|
proto.api.GetUserResponse.prototype.hasUpdatedAt = function() {
|
|
return jspb.Message.getField(this, 3) != null;
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.UpdateUserRequest = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
};
|
|
goog.inherits(proto.api.UpdateUserRequest, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.UpdateUserRequest.displayName = 'proto.api.UpdateUserRequest';
|
|
}
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.UpdateUserRequest.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.UpdateUserRequest.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.UpdateUserRequest} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.UpdateUserRequest.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
user: (f = msg.getUser()) && proto.api.User.toObject(includeInstance, f)
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.UpdateUserRequest}
|
|
*/
|
|
proto.api.UpdateUserRequest.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.UpdateUserRequest;
|
|
return proto.api.UpdateUserRequest.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.UpdateUserRequest} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.UpdateUserRequest}
|
|
*/
|
|
proto.api.UpdateUserRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = new proto.api.User;
|
|
reader.readMessage(value,proto.api.User.deserializeBinaryFromReader);
|
|
msg.setUser(value);
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.UpdateUserRequest} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.UpdateUserRequest.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.UpdateUserRequest.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.UpdateUserRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getUser();
|
|
if (f != null) {
|
|
writer.writeMessage(
|
|
1,
|
|
f,
|
|
proto.api.User.serializeBinaryToWriter
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.UpdateUserRequest} The clone.
|
|
*/
|
|
proto.api.UpdateUserRequest.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.UpdateUserRequest} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional User user = 1;
|
|
* @return {proto.api.User}
|
|
*/
|
|
proto.api.UpdateUserRequest.prototype.getUser = function() {
|
|
return /** @type{proto.api.User} */ (
|
|
jspb.Message.getWrapperField(this, proto.api.User, 1));
|
|
};
|
|
|
|
|
|
/** @param {proto.api.User|undefined} value */
|
|
proto.api.UpdateUserRequest.prototype.setUser = function(value) {
|
|
jspb.Message.setWrapperField(this, 1, value);
|
|
};
|
|
|
|
|
|
proto.api.UpdateUserRequest.prototype.clearUser = function() {
|
|
this.setUser(undefined);
|
|
};
|
|
|
|
|
|
/**
|
|
* Returns whether this field is set.
|
|
* @return{!boolean}
|
|
*/
|
|
proto.api.UpdateUserRequest.prototype.hasUser = function() {
|
|
return jspb.Message.getField(this, 1) != null;
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.DeleteUserRequest = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
};
|
|
goog.inherits(proto.api.DeleteUserRequest, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.DeleteUserRequest.displayName = 'proto.api.DeleteUserRequest';
|
|
}
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.DeleteUserRequest.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.DeleteUserRequest.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.DeleteUserRequest} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.DeleteUserRequest.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
id: msg.getId()
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.DeleteUserRequest}
|
|
*/
|
|
proto.api.DeleteUserRequest.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.DeleteUserRequest;
|
|
return proto.api.DeleteUserRequest.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.DeleteUserRequest} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.DeleteUserRequest}
|
|
*/
|
|
proto.api.DeleteUserRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setId(value);
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.DeleteUserRequest} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.DeleteUserRequest.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.DeleteUserRequest.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.DeleteUserRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getId();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
1,
|
|
f
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.DeleteUserRequest} The clone.
|
|
*/
|
|
proto.api.DeleteUserRequest.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.DeleteUserRequest} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string id = 1;
|
|
* @return {string}
|
|
*/
|
|
proto.api.DeleteUserRequest.prototype.getId = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 1, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.DeleteUserRequest.prototype.setId = function(value) {
|
|
jspb.Message.setField(this, 1, value);
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.ListUsersRequest = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
};
|
|
goog.inherits(proto.api.ListUsersRequest, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.ListUsersRequest.displayName = 'proto.api.ListUsersRequest';
|
|
}
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.ListUsersRequest.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.ListUsersRequest.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.ListUsersRequest} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.ListUsersRequest.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
limit: msg.getLimit(),
|
|
offset: msg.getOffset()
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.ListUsersRequest}
|
|
*/
|
|
proto.api.ListUsersRequest.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.ListUsersRequest;
|
|
return proto.api.ListUsersRequest.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.ListUsersRequest} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.ListUsersRequest}
|
|
*/
|
|
proto.api.ListUsersRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = /** @type {number} */ (reader.readUint32());
|
|
msg.setLimit(value);
|
|
break;
|
|
case 2:
|
|
var value = /** @type {number} */ (reader.readUint32());
|
|
msg.setOffset(value);
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.ListUsersRequest} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.ListUsersRequest.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.ListUsersRequest.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.ListUsersRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getLimit();
|
|
if (f !== 0) {
|
|
writer.writeUint32(
|
|
1,
|
|
f
|
|
);
|
|
}
|
|
f = this.getOffset();
|
|
if (f !== 0) {
|
|
writer.writeUint32(
|
|
2,
|
|
f
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.ListUsersRequest} The clone.
|
|
*/
|
|
proto.api.ListUsersRequest.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.ListUsersRequest} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional uint32 limit = 1;
|
|
* @return {number}
|
|
*/
|
|
proto.api.ListUsersRequest.prototype.getLimit = function() {
|
|
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
|
|
};
|
|
|
|
|
|
/** @param {number} value */
|
|
proto.api.ListUsersRequest.prototype.setLimit = function(value) {
|
|
jspb.Message.setField(this, 1, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional uint32 offset = 2;
|
|
* @return {number}
|
|
*/
|
|
proto.api.ListUsersRequest.prototype.getOffset = function() {
|
|
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 2, 0));
|
|
};
|
|
|
|
|
|
/** @param {number} value */
|
|
proto.api.ListUsersRequest.prototype.setOffset = function(value) {
|
|
jspb.Message.setField(this, 2, value);
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.ListUsersResponse = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, proto.api.ListUsersResponse.repeatedFields_, null);
|
|
};
|
|
goog.inherits(proto.api.ListUsersResponse, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.ListUsersResponse.displayName = 'proto.api.ListUsersResponse';
|
|
}
|
|
/**
|
|
* List of repeated fields within this message type.
|
|
* @private {!Array<number>}
|
|
* @const
|
|
*/
|
|
proto.api.ListUsersResponse.repeatedFields_ = [2];
|
|
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.ListUsersResponse.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.ListUsersResponse.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.ListUsersResponse} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.ListUsersResponse.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
totalCount: msg.getTotalCount(),
|
|
resultList: jspb.Message.toObjectList(msg.getResultList(),
|
|
proto.api.UserListItem.toObject, includeInstance)
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.ListUsersResponse}
|
|
*/
|
|
proto.api.ListUsersResponse.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.ListUsersResponse;
|
|
return proto.api.ListUsersResponse.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.ListUsersResponse} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.ListUsersResponse}
|
|
*/
|
|
proto.api.ListUsersResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = /** @type {number} */ (reader.readUint32());
|
|
msg.setTotalCount(value);
|
|
break;
|
|
case 2:
|
|
var value = new proto.api.UserListItem;
|
|
reader.readMessage(value,proto.api.UserListItem.deserializeBinaryFromReader);
|
|
msg.getResultList().push(value);
|
|
msg.setResultList(msg.getResultList());
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.ListUsersResponse} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.ListUsersResponse.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.ListUsersResponse.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.ListUsersResponse.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getTotalCount();
|
|
if (f !== 0) {
|
|
writer.writeUint32(
|
|
1,
|
|
f
|
|
);
|
|
}
|
|
f = this.getResultList();
|
|
if (f.length > 0) {
|
|
writer.writeRepeatedMessage(
|
|
2,
|
|
f,
|
|
proto.api.UserListItem.serializeBinaryToWriter
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.ListUsersResponse} The clone.
|
|
*/
|
|
proto.api.ListUsersResponse.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.ListUsersResponse} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional uint32 total_count = 1;
|
|
* @return {number}
|
|
*/
|
|
proto.api.ListUsersResponse.prototype.getTotalCount = function() {
|
|
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
|
|
};
|
|
|
|
|
|
/** @param {number} value */
|
|
proto.api.ListUsersResponse.prototype.setTotalCount = function(value) {
|
|
jspb.Message.setField(this, 1, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* repeated UserListItem result = 2;
|
|
* If you change this array by adding, removing or replacing elements, or if you
|
|
* replace the array itself, then you must call the setter to update it.
|
|
* @return {!Array.<!proto.api.UserListItem>}
|
|
*/
|
|
proto.api.ListUsersResponse.prototype.getResultList = function() {
|
|
return /** @type{!Array.<!proto.api.UserListItem>} */ (
|
|
jspb.Message.getRepeatedWrapperField(this, proto.api.UserListItem, 2));
|
|
};
|
|
|
|
|
|
/** @param {Array.<!proto.api.UserListItem>} value */
|
|
proto.api.ListUsersResponse.prototype.setResultList = function(value) {
|
|
jspb.Message.setRepeatedWrapperField(this, 2, value);
|
|
};
|
|
|
|
|
|
proto.api.ListUsersResponse.prototype.clearResultList = function() {
|
|
this.setResultList([]);
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Generated by JsPbCodeGenerator.
|
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
* server response, or constructed directly in Javascript. The array is used
|
|
* in place and becomes part of the constructed object. It is not cloned.
|
|
* If no data is provided, the constructed object will be empty, but still
|
|
* valid.
|
|
* @extends {jspb.Message}
|
|
* @constructor
|
|
*/
|
|
proto.api.UpdateUserPasswordRequest = function(opt_data) {
|
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
};
|
|
goog.inherits(proto.api.UpdateUserPasswordRequest, jspb.Message);
|
|
if (goog.DEBUG && !COMPILED) {
|
|
proto.api.UpdateUserPasswordRequest.displayName = 'proto.api.UpdateUserPasswordRequest';
|
|
}
|
|
|
|
|
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
/**
|
|
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
* For the list of reserved names please see:
|
|
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.UpdateUserPasswordRequest.prototype.toObject = function(opt_includeInstance) {
|
|
return proto.api.UpdateUserPasswordRequest.toObject(opt_includeInstance, this);
|
|
};
|
|
|
|
|
|
/**
|
|
* Static version of the {@see toObject} method.
|
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
* instance for transitional soy proto support:
|
|
* http://goto/soy-param-migration
|
|
* @param {!proto.api.UpdateUserPasswordRequest} msg The msg instance to transform.
|
|
* @return {!Object}
|
|
*/
|
|
proto.api.UpdateUserPasswordRequest.toObject = function(includeInstance, msg) {
|
|
var f, obj = {
|
|
userId: msg.getUserId(),
|
|
password: msg.getPassword()
|
|
};
|
|
|
|
if (includeInstance) {
|
|
obj.$jspbMessageInstance = msg;
|
|
}
|
|
return obj;
|
|
};
|
|
}
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format).
|
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
* @return {!proto.api.UpdateUserPasswordRequest}
|
|
*/
|
|
proto.api.UpdateUserPasswordRequest.deserializeBinary = function(bytes) {
|
|
var reader = new jspb.BinaryReader(bytes);
|
|
var msg = new proto.api.UpdateUserPasswordRequest;
|
|
return proto.api.UpdateUserPasswordRequest.deserializeBinaryFromReader(msg, reader);
|
|
};
|
|
|
|
|
|
/**
|
|
* Deserializes binary data (in protobuf wire format) from the
|
|
* given reader into the given message object.
|
|
* @param {!proto.api.UpdateUserPasswordRequest} msg The message object to deserialize into.
|
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
* @return {!proto.api.UpdateUserPasswordRequest}
|
|
*/
|
|
proto.api.UpdateUserPasswordRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
while (reader.nextField()) {
|
|
if (reader.isEndGroup()) {
|
|
break;
|
|
}
|
|
var field = reader.getFieldNumber();
|
|
switch (field) {
|
|
case 1:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setUserId(value);
|
|
break;
|
|
case 2:
|
|
var value = /** @type {string} */ (reader.readString());
|
|
msg.setPassword(value);
|
|
break;
|
|
default:
|
|
reader.skipField();
|
|
break;
|
|
}
|
|
}
|
|
return msg;
|
|
};
|
|
|
|
|
|
/**
|
|
* Class method variant: serializes the given message to binary data
|
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
* @param {!proto.api.UpdateUserPasswordRequest} message
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.UpdateUserPasswordRequest.serializeBinaryToWriter = function(message, writer) {
|
|
message.serializeBinaryToWriter(writer);
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format).
|
|
* @return {!Uint8Array}
|
|
*/
|
|
proto.api.UpdateUserPasswordRequest.prototype.serializeBinary = function() {
|
|
var writer = new jspb.BinaryWriter();
|
|
this.serializeBinaryToWriter(writer);
|
|
return writer.getResultBuffer();
|
|
};
|
|
|
|
|
|
/**
|
|
* Serializes the message to binary data (in protobuf wire format),
|
|
* writing to the given BinaryWriter.
|
|
* @param {!jspb.BinaryWriter} writer
|
|
*/
|
|
proto.api.UpdateUserPasswordRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
var f = undefined;
|
|
f = this.getUserId();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
1,
|
|
f
|
|
);
|
|
}
|
|
f = this.getPassword();
|
|
if (f.length > 0) {
|
|
writer.writeString(
|
|
2,
|
|
f
|
|
);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
* @return {!proto.api.UpdateUserPasswordRequest} The clone.
|
|
*/
|
|
proto.api.UpdateUserPasswordRequest.prototype.cloneMessage = function() {
|
|
return /** @type {!proto.api.UpdateUserPasswordRequest} */ (jspb.Message.cloneMessage(this));
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string user_id = 1;
|
|
* @return {string}
|
|
*/
|
|
proto.api.UpdateUserPasswordRequest.prototype.getUserId = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 1, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.UpdateUserPasswordRequest.prototype.setUserId = function(value) {
|
|
jspb.Message.setField(this, 1, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* optional string password = 2;
|
|
* @return {string}
|
|
*/
|
|
proto.api.UpdateUserPasswordRequest.prototype.getPassword = function() {
|
|
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 2, ""));
|
|
};
|
|
|
|
|
|
/** @param {string} value */
|
|
proto.api.UpdateUserPasswordRequest.prototype.setPassword = function(value) {
|
|
jspb.Message.setField(this, 2, value);
|
|
};
|
|
|
|
|
|
goog.object.extend(exports, proto.api);
|