/** * @fileoverview * @enhanceable * @public */ // GENERATED CODE -- DO NOT EDIT! var jspb = require('google-protobuf'); var goog = jspb; var global = Function('return this')(); goog.exportSymbol('proto.google.api.LabelDescriptor', null, global); goog.exportSymbol('proto.google.api.LabelDescriptor.ValueType', 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.google.api.LabelDescriptor = function(opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; goog.inherits(proto.google.api.LabelDescriptor, jspb.Message); if (goog.DEBUG && !COMPILED) { proto.google.api.LabelDescriptor.displayName = 'proto.google.api.LabelDescriptor'; } 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_, 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.google.api.LabelDescriptor.prototype.toObject = function(opt_includeInstance) { return proto.google.api.LabelDescriptor.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.google.api.LabelDescriptor} msg The msg instance to transform. * @return {!Object} */ proto.google.api.LabelDescriptor.toObject = function(includeInstance, msg) { var f, obj = { key: msg.getKey(), valueType: msg.getValueType(), description: msg.getDescription() }; if (includeInstance) { obj.$jspbMessageInstance = msg; } return obj; }; } /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. * @return {!proto.google.api.LabelDescriptor} */ proto.google.api.LabelDescriptor.deserializeBinary = function(bytes) { var reader = new jspb.BinaryReader(bytes); var msg = new proto.google.api.LabelDescriptor; return proto.google.api.LabelDescriptor.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. * @param {!proto.google.api.LabelDescriptor} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. * @return {!proto.google.api.LabelDescriptor} */ proto.google.api.LabelDescriptor.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.setKey(value); break; case 2: var value = /** @type {!proto.google.api.LabelDescriptor.ValueType} */ (reader.readEnum()); msg.setValueType(value); break; case 3: var value = /** @type {string} */ (reader.readString()); msg.setDescription(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.google.api.LabelDescriptor} message * @param {!jspb.BinaryWriter} writer */ proto.google.api.LabelDescriptor.serializeBinaryToWriter = function(message, writer) { message.serializeBinaryToWriter(writer); }; /** * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ proto.google.api.LabelDescriptor.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.google.api.LabelDescriptor.prototype.serializeBinaryToWriter = function (writer) { var f = undefined; f = this.getKey(); if (f.length > 0) { writer.writeString( 1, f ); } f = this.getValueType(); if (f !== 0.0) { writer.writeEnum( 2, f ); } f = this.getDescription(); if (f.length > 0) { writer.writeString( 3, f ); } }; /** * Creates a deep clone of this proto. No data is shared with the original. * @return {!proto.google.api.LabelDescriptor} The clone. */ proto.google.api.LabelDescriptor.prototype.cloneMessage = function() { return /** @type {!proto.google.api.LabelDescriptor} */ (jspb.Message.cloneMessage(this)); }; /** * optional string key = 1; * @return {string} */ proto.google.api.LabelDescriptor.prototype.getKey = function() { return /** @type {string} */ (jspb.Message.getFieldProto3(this, 1, "")); }; /** @param {string} value */ proto.google.api.LabelDescriptor.prototype.setKey = function(value) { jspb.Message.setField(this, 1, value); }; /** * optional ValueType value_type = 2; * @return {!proto.google.api.LabelDescriptor.ValueType} */ proto.google.api.LabelDescriptor.prototype.getValueType = function() { return /** @type {!proto.google.api.LabelDescriptor.ValueType} */ (jspb.Message.getFieldProto3(this, 2, 0)); }; /** @param {!proto.google.api.LabelDescriptor.ValueType} value */ proto.google.api.LabelDescriptor.prototype.setValueType = function(value) { jspb.Message.setField(this, 2, value); }; /** * optional string description = 3; * @return {string} */ proto.google.api.LabelDescriptor.prototype.getDescription = function() { return /** @type {string} */ (jspb.Message.getFieldProto3(this, 3, "")); }; /** @param {string} value */ proto.google.api.LabelDescriptor.prototype.setDescription = function(value) { jspb.Message.setField(this, 3, value); }; /** * @enum {number} */ proto.google.api.LabelDescriptor.ValueType = { STRING: 0, BOOL: 1, INT64: 2 }; goog.object.extend(exports, proto.google.api);