// package: routerprotocol.routerchain.pricefeed
// file: routerprotocol/routerchain/pricefeed/price_feeder_info.proto

import * as jspb from "google-protobuf";

export class PriceFeederInfo extends jspb.Message {
  getName(): string;
  setName(value: string): void;

  getAddress(): string;
  setAddress(value: string): void;

  getActive(): boolean;
  setActive(value: boolean): void;

  serializeBinary(): Uint8Array;
  toObject(includeInstance?: boolean): PriceFeederInfo.AsObject;
  static toObject(includeInstance: boolean, msg: PriceFeederInfo): PriceFeederInfo.AsObject;
  static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
  static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
  static serializeBinaryToWriter(message: PriceFeederInfo, writer: jspb.BinaryWriter): void;
  static deserializeBinary(bytes: Uint8Array): PriceFeederInfo;
  static deserializeBinaryFromReader(message: PriceFeederInfo, reader: jspb.BinaryReader): PriceFeederInfo;
}

export namespace PriceFeederInfo {
  export type AsObject = {
    name: string,
    address: string,
    active: boolean,
  }
}

