All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lnrpc.EstimateFeeRequest.scala Maven / Gradle / Ivy

The newest version!
// Generated by the Scala Plugin for the Protocol Buffer Compiler.
// Do not edit!
//
// Protofile syntax: PROTO3

package lnrpc
import org.bitcoins.lnd.rpc.LndUtils._

/** @param addrToAmount
  *   The map from addresses to amounts for the transaction.
  * @param targetConf
  *   The target number of blocks that this transaction should be confirmed
  *   by.
  * @param minConfs
  *   The minimum number of confirmations each one of your outputs used for
  *   the transaction must satisfy.
  * @param spendUnconfirmed
  *   Whether unconfirmed outputs should be used as inputs for the transaction.
  */
@SerialVersionUID(0L)
final case class EstimateFeeRequest(
    addrToAmount: _root_.scala.collection.immutable.Map[_root_.scala.Predef.String, _root_.scala.Long] = _root_.scala.collection.immutable.Map.empty,
    targetConf: _root_.scala.Int = 0,
    minConfs: _root_.scala.Int = 0,
    spendUnconfirmed: _root_.scala.Boolean = false,
    unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
    ) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[EstimateFeeRequest] {
    @transient
    private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
    private[this] def __computeSerializedSize(): _root_.scala.Int = {
      var __size = 0
      addrToAmount.foreach { __item =>
        val __value = lnrpc.EstimateFeeRequest._typemapper_addrToAmount.toBase(__item)
        __size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
      }
      
      {
        val __value = targetConf
        if (__value != 0) {
          __size += _root_.com.google.protobuf.CodedOutputStream.computeInt32Size(2, __value)
        }
      };
      
      {
        val __value = minConfs
        if (__value != 0) {
          __size += _root_.com.google.protobuf.CodedOutputStream.computeInt32Size(3, __value)
        }
      };
      
      {
        val __value = spendUnconfirmed
        if (__value != false) {
          __size += _root_.com.google.protobuf.CodedOutputStream.computeBoolSize(4, __value)
        }
      };
      __size += unknownFields.serializedSize
      __size
    }
    override def serializedSize: _root_.scala.Int = {
      var __size = __serializedSizeMemoized
      if (__size == 0) {
        __size = __computeSerializedSize() + 1
        __serializedSizeMemoized = __size
      }
      __size - 1
      
    }
    def writeTo(`_output__`: _root_.com.google.protobuf.CodedOutputStream): _root_.scala.Unit = {
      addrToAmount.foreach { __v =>
        val __m = lnrpc.EstimateFeeRequest._typemapper_addrToAmount.toBase(__v)
        _output__.writeTag(1, 2)
        _output__.writeUInt32NoTag(__m.serializedSize)
        __m.writeTo(_output__)
      };
      {
        val __v = targetConf
        if (__v != 0) {
          _output__.writeInt32(2, __v)
        }
      };
      {
        val __v = minConfs
        if (__v != 0) {
          _output__.writeInt32(3, __v)
        }
      };
      {
        val __v = spendUnconfirmed
        if (__v != false) {
          _output__.writeBool(4, __v)
        }
      };
      unknownFields.writeTo(_output__)
    }
    def clearAddrToAmount = copy(addrToAmount = _root_.scala.collection.immutable.Map.empty)
    def addAddrToAmount(__vs: (_root_.scala.Predef.String, _root_.scala.Long) *): EstimateFeeRequest = addAllAddrToAmount(__vs)
    def addAllAddrToAmount(__vs: Iterable[(_root_.scala.Predef.String, _root_.scala.Long)]): EstimateFeeRequest = copy(addrToAmount = addrToAmount ++ __vs)
    def withAddrToAmount(__v: _root_.scala.collection.immutable.Map[_root_.scala.Predef.String, _root_.scala.Long]): EstimateFeeRequest = copy(addrToAmount = __v)
    def withTargetConf(__v: _root_.scala.Int): EstimateFeeRequest = copy(targetConf = __v)
    def withMinConfs(__v: _root_.scala.Int): EstimateFeeRequest = copy(minConfs = __v)
    def withSpendUnconfirmed(__v: _root_.scala.Boolean): EstimateFeeRequest = copy(spendUnconfirmed = __v)
    def withUnknownFields(__v: _root_.scalapb.UnknownFieldSet) = copy(unknownFields = __v)
    def discardUnknownFields = copy(unknownFields = _root_.scalapb.UnknownFieldSet.empty)
    def getFieldByNumber(__fieldNumber: _root_.scala.Int): _root_.scala.Any = {
      (__fieldNumber: @_root_.scala.unchecked) match {
        case 1 => addrToAmount.iterator.map(lnrpc.EstimateFeeRequest._typemapper_addrToAmount.toBase(_)).toSeq
        case 2 => {
          val __t = targetConf
          if (__t != 0) __t else null
        }
        case 3 => {
          val __t = minConfs
          if (__t != 0) __t else null
        }
        case 4 => {
          val __t = spendUnconfirmed
          if (__t != false) __t else null
        }
      }
    }
    def getField(__field: _root_.scalapb.descriptors.FieldDescriptor): _root_.scalapb.descriptors.PValue = {
      _root_.scala.Predef.require(__field.containingMessage eq companion.scalaDescriptor)
      (__field.number: @_root_.scala.unchecked) match {
        case 1 => _root_.scalapb.descriptors.PRepeated(addrToAmount.iterator.map(lnrpc.EstimateFeeRequest._typemapper_addrToAmount.toBase(_).toPMessage).toVector)
        case 2 => _root_.scalapb.descriptors.PInt(targetConf)
        case 3 => _root_.scalapb.descriptors.PInt(minConfs)
        case 4 => _root_.scalapb.descriptors.PBoolean(spendUnconfirmed)
      }
    }
    def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
    def companion: lnrpc.EstimateFeeRequest.type = lnrpc.EstimateFeeRequest
    // @@protoc_insertion_point(GeneratedMessage[lnrpc.EstimateFeeRequest])
}

object EstimateFeeRequest extends scalapb.GeneratedMessageCompanion[lnrpc.EstimateFeeRequest] {
  implicit def messageCompanion: scalapb.GeneratedMessageCompanion[lnrpc.EstimateFeeRequest] = this
  def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): lnrpc.EstimateFeeRequest = {
    val __addrToAmount: _root_.scala.collection.mutable.Builder[(_root_.scala.Predef.String, _root_.scala.Long), _root_.scala.collection.immutable.Map[_root_.scala.Predef.String, _root_.scala.Long]] = _root_.scala.collection.immutable.Map.newBuilder[_root_.scala.Predef.String, _root_.scala.Long]
    var __targetConf: _root_.scala.Int = 0
    var __minConfs: _root_.scala.Int = 0
    var __spendUnconfirmed: _root_.scala.Boolean = false
    var `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
    var _done__ = false
    while (!_done__) {
      val _tag__ = _input__.readTag()
      _tag__ match {
        case 0 => _done__ = true
        case 10 =>
          __addrToAmount += lnrpc.EstimateFeeRequest._typemapper_addrToAmount.toCustom(_root_.scalapb.LiteParser.readMessage[lnrpc.EstimateFeeRequest.AddrToAmountEntry](_input__))
        case 16 =>
          __targetConf = _input__.readInt32()
        case 24 =>
          __minConfs = _input__.readInt32()
        case 32 =>
          __spendUnconfirmed = _input__.readBool()
        case tag =>
          if (_unknownFields__ == null) {
            _unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
          }
          _unknownFields__.parseField(tag, _input__)
      }
    }
    lnrpc.EstimateFeeRequest(
        addrToAmount = __addrToAmount.result(),
        targetConf = __targetConf,
        minConfs = __minConfs,
        spendUnconfirmed = __spendUnconfirmed,
        unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
    )
  }
  implicit def messageReads: _root_.scalapb.descriptors.Reads[lnrpc.EstimateFeeRequest] = _root_.scalapb.descriptors.Reads{
    case _root_.scalapb.descriptors.PMessage(__fieldsMap) =>
      _root_.scala.Predef.require(__fieldsMap.keys.forall(_.containingMessage eq scalaDescriptor), "FieldDescriptor does not match message type.")
      lnrpc.EstimateFeeRequest(
        addrToAmount = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).map(_.as[_root_.scala.Seq[lnrpc.EstimateFeeRequest.AddrToAmountEntry]]).getOrElse(_root_.scala.Seq.empty).iterator.map(lnrpc.EstimateFeeRequest._typemapper_addrToAmount.toCustom(_)).toMap,
        targetConf = __fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).map(_.as[_root_.scala.Int]).getOrElse(0),
        minConfs = __fieldsMap.get(scalaDescriptor.findFieldByNumber(3).get).map(_.as[_root_.scala.Int]).getOrElse(0),
        spendUnconfirmed = __fieldsMap.get(scalaDescriptor.findFieldByNumber(4).get).map(_.as[_root_.scala.Boolean]).getOrElse(false)
      )
    case _ => throw new RuntimeException("Expected PMessage")
  }
  def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = LightningProto.javaDescriptor.getMessageTypes().get(21)
  def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = LightningProto.scalaDescriptor.messages(21)
  def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
    var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
    (__number: @_root_.scala.unchecked) match {
      case 1 => __out = lnrpc.EstimateFeeRequest.AddrToAmountEntry
    }
    __out
  }
  lazy val nestedMessagesCompanions: Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]] =
    Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]](
      _root_.lnrpc.EstimateFeeRequest.AddrToAmountEntry
    )
  def enumCompanionForFieldNumber(__fieldNumber: _root_.scala.Int): _root_.scalapb.GeneratedEnumCompanion[_] = throw new MatchError(__fieldNumber)
  lazy val defaultInstance = lnrpc.EstimateFeeRequest(
    addrToAmount = _root_.scala.collection.immutable.Map.empty,
    targetConf = 0,
    minConfs = 0,
    spendUnconfirmed = false
  )
  @SerialVersionUID(0L)
  final case class AddrToAmountEntry(
      key: _root_.scala.Predef.String = "",
      value: _root_.scala.Long = 0L,
      unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
      ) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[AddrToAmountEntry] {
      @transient
      private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
      private[this] def __computeSerializedSize(): _root_.scala.Int = {
        var __size = 0
        
        {
          val __value = key
          if (!__value.isEmpty) {
            __size += _root_.com.google.protobuf.CodedOutputStream.computeStringSize(1, __value)
          }
        };
        
        {
          val __value = value
          if (__value != 0L) {
            __size += _root_.com.google.protobuf.CodedOutputStream.computeInt64Size(2, __value)
          }
        };
        __size += unknownFields.serializedSize
        __size
      }
      override def serializedSize: _root_.scala.Int = {
        var __size = __serializedSizeMemoized
        if (__size == 0) {
          __size = __computeSerializedSize() + 1
          __serializedSizeMemoized = __size
        }
        __size - 1
        
      }
      def writeTo(`_output__`: _root_.com.google.protobuf.CodedOutputStream): _root_.scala.Unit = {
        {
          val __v = key
          if (!__v.isEmpty) {
            _output__.writeString(1, __v)
          }
        };
        {
          val __v = value
          if (__v != 0L) {
            _output__.writeInt64(2, __v)
          }
        };
        unknownFields.writeTo(_output__)
      }
      def withKey(__v: _root_.scala.Predef.String): AddrToAmountEntry = copy(key = __v)
      def withValue(__v: _root_.scala.Long): AddrToAmountEntry = copy(value = __v)
      def withUnknownFields(__v: _root_.scalapb.UnknownFieldSet) = copy(unknownFields = __v)
      def discardUnknownFields = copy(unknownFields = _root_.scalapb.UnknownFieldSet.empty)
      def getFieldByNumber(__fieldNumber: _root_.scala.Int): _root_.scala.Any = {
        (__fieldNumber: @_root_.scala.unchecked) match {
          case 1 => {
            val __t = key
            if (__t != "") __t else null
          }
          case 2 => {
            val __t = value
            if (__t != 0L) __t else null
          }
        }
      }
      def getField(__field: _root_.scalapb.descriptors.FieldDescriptor): _root_.scalapb.descriptors.PValue = {
        _root_.scala.Predef.require(__field.containingMessage eq companion.scalaDescriptor)
        (__field.number: @_root_.scala.unchecked) match {
          case 1 => _root_.scalapb.descriptors.PString(key)
          case 2 => _root_.scalapb.descriptors.PLong(value)
        }
      }
      def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
      def companion: lnrpc.EstimateFeeRequest.AddrToAmountEntry.type = lnrpc.EstimateFeeRequest.AddrToAmountEntry
      // @@protoc_insertion_point(GeneratedMessage[lnrpc.EstimateFeeRequest.AddrToAmountEntry])
  }
  
  object AddrToAmountEntry extends scalapb.GeneratedMessageCompanion[lnrpc.EstimateFeeRequest.AddrToAmountEntry] {
    implicit def messageCompanion: scalapb.GeneratedMessageCompanion[lnrpc.EstimateFeeRequest.AddrToAmountEntry] = this
    def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): lnrpc.EstimateFeeRequest.AddrToAmountEntry = {
      var __key: _root_.scala.Predef.String = ""
      var __value: _root_.scala.Long = 0L
      var `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
      var _done__ = false
      while (!_done__) {
        val _tag__ = _input__.readTag()
        _tag__ match {
          case 0 => _done__ = true
          case 10 =>
            __key = _input__.readStringRequireUtf8()
          case 16 =>
            __value = _input__.readInt64()
          case tag =>
            if (_unknownFields__ == null) {
              _unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
            }
            _unknownFields__.parseField(tag, _input__)
        }
      }
      lnrpc.EstimateFeeRequest.AddrToAmountEntry(
          key = __key,
          value = __value,
          unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
      )
    }
    implicit def messageReads: _root_.scalapb.descriptors.Reads[lnrpc.EstimateFeeRequest.AddrToAmountEntry] = _root_.scalapb.descriptors.Reads{
      case _root_.scalapb.descriptors.PMessage(__fieldsMap) =>
        _root_.scala.Predef.require(__fieldsMap.keys.forall(_.containingMessage eq scalaDescriptor), "FieldDescriptor does not match message type.")
        lnrpc.EstimateFeeRequest.AddrToAmountEntry(
          key = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).map(_.as[_root_.scala.Predef.String]).getOrElse(""),
          value = __fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).map(_.as[_root_.scala.Long]).getOrElse(0L)
        )
      case _ => throw new RuntimeException("Expected PMessage")
    }
    def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = lnrpc.EstimateFeeRequest.javaDescriptor.getNestedTypes().get(0)
    def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = lnrpc.EstimateFeeRequest.scalaDescriptor.nestedMessages(0)
    def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = throw new MatchError(__number)
    lazy val nestedMessagesCompanions: Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]] = Seq.empty
    def enumCompanionForFieldNumber(__fieldNumber: _root_.scala.Int): _root_.scalapb.GeneratedEnumCompanion[_] = throw new MatchError(__fieldNumber)
    lazy val defaultInstance = lnrpc.EstimateFeeRequest.AddrToAmountEntry(
      key = "",
      value = 0L
    )
    implicit class AddrToAmountEntryLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, lnrpc.EstimateFeeRequest.AddrToAmountEntry]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, lnrpc.EstimateFeeRequest.AddrToAmountEntry](_l) {
      def key: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Predef.String] = field(_.key)((c_, f_) => c_.copy(key = f_))
      def value: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Long] = field(_.value)((c_, f_) => c_.copy(value = f_))
    }
    final val KEY_FIELD_NUMBER = 1
    final val VALUE_FIELD_NUMBER = 2
    @transient
    implicit val keyValueMapper: _root_.scalapb.TypeMapper[lnrpc.EstimateFeeRequest.AddrToAmountEntry, (_root_.scala.Predef.String, _root_.scala.Long)] =
      _root_.scalapb.TypeMapper[lnrpc.EstimateFeeRequest.AddrToAmountEntry, (_root_.scala.Predef.String, _root_.scala.Long)](__m => (__m.key, __m.value))(__p => lnrpc.EstimateFeeRequest.AddrToAmountEntry(__p._1, __p._2))
    def of(
      key: _root_.scala.Predef.String,
      value: _root_.scala.Long
    ): _root_.lnrpc.EstimateFeeRequest.AddrToAmountEntry = _root_.lnrpc.EstimateFeeRequest.AddrToAmountEntry(
      key,
      value
    )
    // @@protoc_insertion_point(GeneratedMessageCompanion[lnrpc.EstimateFeeRequest.AddrToAmountEntry])
  }
  
  implicit class EstimateFeeRequestLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, lnrpc.EstimateFeeRequest]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, lnrpc.EstimateFeeRequest](_l) {
    def addrToAmount: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.collection.immutable.Map[_root_.scala.Predef.String, _root_.scala.Long]] = field(_.addrToAmount)((c_, f_) => c_.copy(addrToAmount = f_))
    def targetConf: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Int] = field(_.targetConf)((c_, f_) => c_.copy(targetConf = f_))
    def minConfs: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Int] = field(_.minConfs)((c_, f_) => c_.copy(minConfs = f_))
    def spendUnconfirmed: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Boolean] = field(_.spendUnconfirmed)((c_, f_) => c_.copy(spendUnconfirmed = f_))
  }
  final val ADDRTOAMOUNT_FIELD_NUMBER = 1
  final val TARGET_CONF_FIELD_NUMBER = 2
  final val MIN_CONFS_FIELD_NUMBER = 3
  final val SPEND_UNCONFIRMED_FIELD_NUMBER = 4
  @transient
  private[lnrpc] val _typemapper_addrToAmount: _root_.scalapb.TypeMapper[lnrpc.EstimateFeeRequest.AddrToAmountEntry, (_root_.scala.Predef.String, _root_.scala.Long)] = implicitly[_root_.scalapb.TypeMapper[lnrpc.EstimateFeeRequest.AddrToAmountEntry, (_root_.scala.Predef.String, _root_.scala.Long)]]
  def of(
    addrToAmount: _root_.scala.collection.immutable.Map[_root_.scala.Predef.String, _root_.scala.Long],
    targetConf: _root_.scala.Int,
    minConfs: _root_.scala.Int,
    spendUnconfirmed: _root_.scala.Boolean
  ): _root_.lnrpc.EstimateFeeRequest = _root_.lnrpc.EstimateFeeRequest(
    addrToAmount,
    targetConf,
    minConfs,
    spendUnconfirmed
  )
  // @@protoc_insertion_point(GeneratedMessageCompanion[lnrpc.EstimateFeeRequest])
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy