UNPKG

@provenanceio/wallet-utils

Version:

Typescript Utilities for Provenance Blockchain Wallet

683 lines (564 loc) 20.2 kB
"use strict"; // source: provenance/oracle/v1/event.proto /** * @fileoverview * @enhanceable * @suppress {missingRequire} reports error on implicit type usages. * @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! /* eslint-disable */ // @ts-nocheck var jspb = require('google-protobuf'); var goog = jspb; var global = function () { return this || window || global || self || Function('return this')(); }.call(null); goog.exportSymbol('proto.provenance.oracle.v1.EventOracleQueryError', null, global); goog.exportSymbol('proto.provenance.oracle.v1.EventOracleQuerySuccess', null, global); goog.exportSymbol('proto.provenance.oracle.v1.EventOracleQueryTimeout', 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.provenance.oracle.v1.EventOracleQuerySuccess = function (opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; goog.inherits(proto.provenance.oracle.v1.EventOracleQuerySuccess, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ proto.provenance.oracle.v1.EventOracleQuerySuccess.displayName = 'proto.provenance.oracle.v1.EventOracleQuerySuccess'; } /** * 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.provenance.oracle.v1.EventOracleQueryError = function (opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; goog.inherits(proto.provenance.oracle.v1.EventOracleQueryError, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ proto.provenance.oracle.v1.EventOracleQueryError.displayName = 'proto.provenance.oracle.v1.EventOracleQueryError'; } /** * 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.provenance.oracle.v1.EventOracleQueryTimeout = function (opt_data) { jspb.Message.initialize(this, opt_data, 0, -1, null, null); }; goog.inherits(proto.provenance.oracle.v1.EventOracleQueryTimeout, jspb.Message); if (goog.DEBUG && !COMPILED) { /** * @public * @override */ proto.provenance.oracle.v1.EventOracleQueryTimeout.displayName = 'proto.provenance.oracle.v1.EventOracleQueryTimeout'; } 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.provenance.oracle.v1.EventOracleQuerySuccess.prototype.toObject = function (opt_includeInstance) { return proto.provenance.oracle.v1.EventOracleQuerySuccess.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.provenance.oracle.v1.EventOracleQuerySuccess} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ proto.provenance.oracle.v1.EventOracleQuerySuccess.toObject = function (includeInstance, msg) { var f, obj = { channel: jspb.Message.getFieldWithDefault(msg, 1, ""), sequenceId: jspb.Message.getFieldWithDefault(msg, 2, ""), result: jspb.Message.getFieldWithDefault(msg, 3, "") }; if (includeInstance) { obj.$jspbMessageInstance = msg; } return obj; }; } /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. * @return {!proto.provenance.oracle.v1.EventOracleQuerySuccess} */ proto.provenance.oracle.v1.EventOracleQuerySuccess.deserializeBinary = function (bytes) { var reader = new jspb.BinaryReader(bytes); var msg = new proto.provenance.oracle.v1.EventOracleQuerySuccess(); return proto.provenance.oracle.v1.EventOracleQuerySuccess.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. * @param {!proto.provenance.oracle.v1.EventOracleQuerySuccess} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. * @return {!proto.provenance.oracle.v1.EventOracleQuerySuccess} */ proto.provenance.oracle.v1.EventOracleQuerySuccess.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.setChannel(value); break; case 2: var value = /** @type {string} */ reader.readString(); msg.setSequenceId(value); break; case 3: var value = /** @type {string} */ reader.readString(); msg.setResult(value); break; default: reader.skipField(); break; } } return msg; }; /** * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ proto.provenance.oracle.v1.EventOracleQuerySuccess.prototype.serializeBinary = function () { var writer = new jspb.BinaryWriter(); proto.provenance.oracle.v1.EventOracleQuerySuccess.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. * @param {!proto.provenance.oracle.v1.EventOracleQuerySuccess} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ proto.provenance.oracle.v1.EventOracleQuerySuccess.serializeBinaryToWriter = function (message, writer) { var f = undefined; f = message.getChannel(); if (f.length > 0) { writer.writeString(1, f); } f = message.getSequenceId(); if (f.length > 0) { writer.writeString(2, f); } f = message.getResult(); if (f.length > 0) { writer.writeString(3, f); } }; /** * optional string channel = 1; * @return {string} */ proto.provenance.oracle.v1.EventOracleQuerySuccess.prototype.getChannel = function () { return ( /** @type {string} */ jspb.Message.getFieldWithDefault(this, 1, "") ); }; /** * @param {string} value * @return {!proto.provenance.oracle.v1.EventOracleQuerySuccess} returns this */ proto.provenance.oracle.v1.EventOracleQuerySuccess.prototype.setChannel = function (value) { return jspb.Message.setProto3StringField(this, 1, value); }; /** * optional string sequence_id = 2; * @return {string} */ proto.provenance.oracle.v1.EventOracleQuerySuccess.prototype.getSequenceId = function () { return ( /** @type {string} */ jspb.Message.getFieldWithDefault(this, 2, "") ); }; /** * @param {string} value * @return {!proto.provenance.oracle.v1.EventOracleQuerySuccess} returns this */ proto.provenance.oracle.v1.EventOracleQuerySuccess.prototype.setSequenceId = function (value) { return jspb.Message.setProto3StringField(this, 2, value); }; /** * optional string result = 3; * @return {string} */ proto.provenance.oracle.v1.EventOracleQuerySuccess.prototype.getResult = function () { return ( /** @type {string} */ jspb.Message.getFieldWithDefault(this, 3, "") ); }; /** * @param {string} value * @return {!proto.provenance.oracle.v1.EventOracleQuerySuccess} returns this */ proto.provenance.oracle.v1.EventOracleQuerySuccess.prototype.setResult = function (value) { return jspb.Message.setProto3StringField(this, 3, value); }; 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.provenance.oracle.v1.EventOracleQueryError.prototype.toObject = function (opt_includeInstance) { return proto.provenance.oracle.v1.EventOracleQueryError.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.provenance.oracle.v1.EventOracleQueryError} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ proto.provenance.oracle.v1.EventOracleQueryError.toObject = function (includeInstance, msg) { var f, obj = { channel: jspb.Message.getFieldWithDefault(msg, 1, ""), sequenceId: jspb.Message.getFieldWithDefault(msg, 2, ""), error: jspb.Message.getFieldWithDefault(msg, 3, "") }; if (includeInstance) { obj.$jspbMessageInstance = msg; } return obj; }; } /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. * @return {!proto.provenance.oracle.v1.EventOracleQueryError} */ proto.provenance.oracle.v1.EventOracleQueryError.deserializeBinary = function (bytes) { var reader = new jspb.BinaryReader(bytes); var msg = new proto.provenance.oracle.v1.EventOracleQueryError(); return proto.provenance.oracle.v1.EventOracleQueryError.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. * @param {!proto.provenance.oracle.v1.EventOracleQueryError} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. * @return {!proto.provenance.oracle.v1.EventOracleQueryError} */ proto.provenance.oracle.v1.EventOracleQueryError.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.setChannel(value); break; case 2: var value = /** @type {string} */ reader.readString(); msg.setSequenceId(value); break; case 3: var value = /** @type {string} */ reader.readString(); msg.setError(value); break; default: reader.skipField(); break; } } return msg; }; /** * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ proto.provenance.oracle.v1.EventOracleQueryError.prototype.serializeBinary = function () { var writer = new jspb.BinaryWriter(); proto.provenance.oracle.v1.EventOracleQueryError.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. * @param {!proto.provenance.oracle.v1.EventOracleQueryError} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ proto.provenance.oracle.v1.EventOracleQueryError.serializeBinaryToWriter = function (message, writer) { var f = undefined; f = message.getChannel(); if (f.length > 0) { writer.writeString(1, f); } f = message.getSequenceId(); if (f.length > 0) { writer.writeString(2, f); } f = message.getError(); if (f.length > 0) { writer.writeString(3, f); } }; /** * optional string channel = 1; * @return {string} */ proto.provenance.oracle.v1.EventOracleQueryError.prototype.getChannel = function () { return ( /** @type {string} */ jspb.Message.getFieldWithDefault(this, 1, "") ); }; /** * @param {string} value * @return {!proto.provenance.oracle.v1.EventOracleQueryError} returns this */ proto.provenance.oracle.v1.EventOracleQueryError.prototype.setChannel = function (value) { return jspb.Message.setProto3StringField(this, 1, value); }; /** * optional string sequence_id = 2; * @return {string} */ proto.provenance.oracle.v1.EventOracleQueryError.prototype.getSequenceId = function () { return ( /** @type {string} */ jspb.Message.getFieldWithDefault(this, 2, "") ); }; /** * @param {string} value * @return {!proto.provenance.oracle.v1.EventOracleQueryError} returns this */ proto.provenance.oracle.v1.EventOracleQueryError.prototype.setSequenceId = function (value) { return jspb.Message.setProto3StringField(this, 2, value); }; /** * optional string error = 3; * @return {string} */ proto.provenance.oracle.v1.EventOracleQueryError.prototype.getError = function () { return ( /** @type {string} */ jspb.Message.getFieldWithDefault(this, 3, "") ); }; /** * @param {string} value * @return {!proto.provenance.oracle.v1.EventOracleQueryError} returns this */ proto.provenance.oracle.v1.EventOracleQueryError.prototype.setError = function (value) { return jspb.Message.setProto3StringField(this, 3, value); }; 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.provenance.oracle.v1.EventOracleQueryTimeout.prototype.toObject = function (opt_includeInstance) { return proto.provenance.oracle.v1.EventOracleQueryTimeout.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.provenance.oracle.v1.EventOracleQueryTimeout} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ proto.provenance.oracle.v1.EventOracleQueryTimeout.toObject = function (includeInstance, msg) { var f, obj = { channel: jspb.Message.getFieldWithDefault(msg, 1, ""), sequenceId: jspb.Message.getFieldWithDefault(msg, 2, "") }; if (includeInstance) { obj.$jspbMessageInstance = msg; } return obj; }; } /** * Deserializes binary data (in protobuf wire format). * @param {jspb.ByteSource} bytes The bytes to deserialize. * @return {!proto.provenance.oracle.v1.EventOracleQueryTimeout} */ proto.provenance.oracle.v1.EventOracleQueryTimeout.deserializeBinary = function (bytes) { var reader = new jspb.BinaryReader(bytes); var msg = new proto.provenance.oracle.v1.EventOracleQueryTimeout(); return proto.provenance.oracle.v1.EventOracleQueryTimeout.deserializeBinaryFromReader(msg, reader); }; /** * Deserializes binary data (in protobuf wire format) from the * given reader into the given message object. * @param {!proto.provenance.oracle.v1.EventOracleQueryTimeout} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. * @return {!proto.provenance.oracle.v1.EventOracleQueryTimeout} */ proto.provenance.oracle.v1.EventOracleQueryTimeout.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.setChannel(value); break; case 2: var value = /** @type {string} */ reader.readString(); msg.setSequenceId(value); break; default: reader.skipField(); break; } } return msg; }; /** * Serializes the message to binary data (in protobuf wire format). * @return {!Uint8Array} */ proto.provenance.oracle.v1.EventOracleQueryTimeout.prototype.serializeBinary = function () { var writer = new jspb.BinaryWriter(); proto.provenance.oracle.v1.EventOracleQueryTimeout.serializeBinaryToWriter(this, writer); return writer.getResultBuffer(); }; /** * Serializes the given message to binary data (in protobuf wire * format), writing to the given BinaryWriter. * @param {!proto.provenance.oracle.v1.EventOracleQueryTimeout} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ proto.provenance.oracle.v1.EventOracleQueryTimeout.serializeBinaryToWriter = function (message, writer) { var f = undefined; f = message.getChannel(); if (f.length > 0) { writer.writeString(1, f); } f = message.getSequenceId(); if (f.length > 0) { writer.writeString(2, f); } }; /** * optional string channel = 1; * @return {string} */ proto.provenance.oracle.v1.EventOracleQueryTimeout.prototype.getChannel = function () { return ( /** @type {string} */ jspb.Message.getFieldWithDefault(this, 1, "") ); }; /** * @param {string} value * @return {!proto.provenance.oracle.v1.EventOracleQueryTimeout} returns this */ proto.provenance.oracle.v1.EventOracleQueryTimeout.prototype.setChannel = function (value) { return jspb.Message.setProto3StringField(this, 1, value); }; /** * optional string sequence_id = 2; * @return {string} */ proto.provenance.oracle.v1.EventOracleQueryTimeout.prototype.getSequenceId = function () { return ( /** @type {string} */ jspb.Message.getFieldWithDefault(this, 2, "") ); }; /** * @param {string} value * @return {!proto.provenance.oracle.v1.EventOracleQueryTimeout} returns this */ proto.provenance.oracle.v1.EventOracleQueryTimeout.prototype.setSequenceId = function (value) { return jspb.Message.setProto3StringField(this, 2, value); }; goog.object.extend(exports, proto.provenance.oracle.v1);