// source: spine/system/server/scheduled_command.proto
/**
* @fileoverview
* @enhanceable
* @suppress {messageConventions} JS Compiler reports an error if a variable or
* field starts with 'MSG_' and isn't a translatable message.
* @public
*/
// GENERATED CODE -- DO NOT EDIT!
var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var spine_options_pb = require('../../../spine/options_pb.js');
goog.object.extend(proto, spine_options_pb);
var google_protobuf_timestamp_pb = require('../../../google/protobuf/timestamp_pb.js');
goog.object.extend(proto, google_protobuf_timestamp_pb);
var spine_core_command_pb = require('../../../spine/core/command_pb.js');
goog.object.extend(proto, spine_core_command_pb);
goog.exportSymbol('proto.spine.system.server.ScheduledCommandRecord', 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.spine.system.server.ScheduledCommandRecord = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(proto.spine.system.server.ScheduledCommandRecord, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.spine.system.server.ScheduledCommandRecord.displayName = 'proto.spine.system.server.ScheduledCommandRecord';
}
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.toObject = function(opt_includeInstance) {
return proto.spine.system.server.ScheduledCommandRecord.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.spine.system.server.ScheduledCommandRecord} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.spine.system.server.ScheduledCommandRecord.toObject = function(includeInstance, msg) {
var f, obj = {
id: (f = msg.getId()) && spine_core_command_pb.CommandId.toObject(includeInstance, f),
command: (f = msg.getCommand()) && spine_core_command_pb.Command.toObject(includeInstance, f),
schedulingTime: (f = msg.getSchedulingTime()) && 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.spine.system.server.ScheduledCommandRecord}
*/
proto.spine.system.server.ScheduledCommandRecord.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.spine.system.server.ScheduledCommandRecord;
return proto.spine.system.server.ScheduledCommandRecord.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.spine.system.server.ScheduledCommandRecord} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.spine.system.server.ScheduledCommandRecord}
*/
proto.spine.system.server.ScheduledCommandRecord.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = new spine_core_command_pb.CommandId;
reader.readMessage(value,spine_core_command_pb.CommandId.deserializeBinaryFromReader);
msg.setId(value);
break;
case 2:
var value = new spine_core_command_pb.Command;
reader.readMessage(value,spine_core_command_pb.Command.deserializeBinaryFromReader);
msg.setCommand(value);
break;
case 3:
var value = new google_protobuf_timestamp_pb.Timestamp;
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
msg.setSchedulingTime(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.spine.system.server.ScheduledCommandRecord.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.spine.system.server.ScheduledCommandRecord} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.spine.system.server.ScheduledCommandRecord.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getId();
if (f != null) {
writer.writeMessage(
1,
f,
spine_core_command_pb.CommandId.serializeBinaryToWriter
);
}
f = message.getCommand();
if (f != null) {
writer.writeMessage(
2,
f,
spine_core_command_pb.Command.serializeBinaryToWriter
);
}
f = message.getSchedulingTime();
if (f != null) {
writer.writeMessage(
3,
f,
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
);
}
};
/**
* optional spine.core.CommandId id = 1;
* @return {?proto.spine.core.CommandId}
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.getId = function() {
return /** @type{?proto.spine.core.CommandId} */ (
jspb.Message.getWrapperField(this, spine_core_command_pb.CommandId, 1));
};
/**
* @param {?proto.spine.core.CommandId|undefined} value
* @return {!proto.spine.system.server.ScheduledCommandRecord} returns this
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.setId = function(value) {
return jspb.Message.setWrapperField(this, 1, value);
};
/**
* Clears the message field making it undefined.
* @return {!proto.spine.system.server.ScheduledCommandRecord} returns this
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.clearId = function() {
return this.setId(undefined);
};
/**
* Returns whether this field is set.
* @return {boolean}
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.hasId = function() {
return jspb.Message.getField(this, 1) != null;
};
/**
* optional spine.core.Command command = 2;
* @return {?proto.spine.core.Command}
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.getCommand = function() {
return /** @type{?proto.spine.core.Command} */ (
jspb.Message.getWrapperField(this, spine_core_command_pb.Command, 2));
};
/**
* @param {?proto.spine.core.Command|undefined} value
* @return {!proto.spine.system.server.ScheduledCommandRecord} returns this
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.setCommand = function(value) {
return jspb.Message.setWrapperField(this, 2, value);
};
/**
* Clears the message field making it undefined.
* @return {!proto.spine.system.server.ScheduledCommandRecord} returns this
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.clearCommand = function() {
return this.setCommand(undefined);
};
/**
* Returns whether this field is set.
* @return {boolean}
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.hasCommand = function() {
return jspb.Message.getField(this, 2) != null;
};
/**
* optional google.protobuf.Timestamp scheduling_time = 3;
* @return {?proto.google.protobuf.Timestamp}
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.getSchedulingTime = function() {
return /** @type{?proto.google.protobuf.Timestamp} */ (
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 3));
};
/**
* @param {?proto.google.protobuf.Timestamp|undefined} value
* @return {!proto.spine.system.server.ScheduledCommandRecord} returns this
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.setSchedulingTime = function(value) {
return jspb.Message.setWrapperField(this, 3, value);
};
/**
* Clears the message field making it undefined.
* @return {!proto.spine.system.server.ScheduledCommandRecord} returns this
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.clearSchedulingTime = function() {
return this.setSchedulingTime(undefined);
};
/**
* Returns whether this field is set.
* @return {boolean}
*/
proto.spine.system.server.ScheduledCommandRecord.prototype.hasSchedulingTime = function() {
return jspb.Message.getField(this, 3) != null;
};
goog.object.extend(exports, proto.spine.system.server);
// Generated by Spine ProtoJs Plugin
let ObjectParser = require('../../../../client/parser/object-parser.js').default;
let TypeParsers = require('../../../../client/parser/type-parsers.js').default;
proto.spine.system.server.ScheduledCommandRecord.Parser = function() {
ObjectParser.call(this);
};
proto.spine.system.server.ScheduledCommandRecord.Parser.prototype = Object.create(ObjectParser.prototype);
proto.spine.system.server.ScheduledCommandRecord.Parser.prototype.constructor = proto.spine.system.server.ScheduledCommandRecord.Parser;
proto.spine.system.server.ScheduledCommandRecord.Parser.prototype.fromObject = function(obj) {
if (obj === null) {
return null;
}
let msg = new proto.spine.system.server.ScheduledCommandRecord();
if (obj.id !== undefined) {
if (obj.id === null) {
msg.setId(null);
} else {
let value = TypeParsers.parserFor('type.spine.io/spine.core.CommandId').fromObject(obj.id);
msg.setId(value);
}
}
if (obj.command !== undefined) {
if (obj.command === null) {
msg.setCommand(null);
} else {
let value = TypeParsers.parserFor('type.spine.io/spine.core.Command').fromObject(obj.command);
msg.setCommand(value);
}
}
if (obj.schedulingTime !== undefined) {
if (obj.schedulingTime === null) {
msg.setSchedulingTime(null);
} else {
let value = TypeParsers.parserFor('type.googleapis.com/google.protobuf.Timestamp').fromObject(obj.schedulingTime);
msg.setSchedulingTime(value);
}
}
return msg;
};
// Generated by Spine ProtoJs Plugin
proto.spine.system.server.ScheduledCommandRecord.typeUrl = function() {
return 'type.spine.io/spine.system.server.ScheduledCommandRecord';
};