lnrpc.ListMacaroonIDsResponse.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 rootKeyIds
* The list of root key IDs that are in use.
*/
@SerialVersionUID(0L)
final case class ListMacaroonIDsResponse(
rootKeyIds: _root_.scala.Seq[org.bitcoins.core.number.UInt64] = _root_.scala.Seq.empty,
unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[ListMacaroonIDsResponse] {
private[this] def rootKeyIdsSerializedSize = {
if (__rootKeyIdsSerializedSizeField == 0) __rootKeyIdsSerializedSizeField = {
var __s: _root_.scala.Int = 0
rootKeyIds.foreach(__i => __s += _root_.com.google.protobuf.CodedOutputStream.computeUInt64SizeNoTag(lnrpc.ListMacaroonIDsResponse._typemapper_rootKeyIds.toBase(__i)))
__s
}
__rootKeyIdsSerializedSizeField
}
@transient private[this] var __rootKeyIdsSerializedSizeField: _root_.scala.Int = 0
@transient
private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
private[this] def __computeSerializedSize(): _root_.scala.Int = {
var __size = 0
if (rootKeyIds.nonEmpty) {
val __localsize = rootKeyIdsSerializedSize
__size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__localsize) + __localsize
}
__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 = {
if (rootKeyIds.nonEmpty) {
_output__.writeTag(1, 2)
_output__.writeUInt32NoTag(rootKeyIdsSerializedSize)
rootKeyIds.foreach((_output__.writeUInt64NoTag _).compose(lnrpc.ListMacaroonIDsResponse._typemapper_rootKeyIds.toBase))
};
unknownFields.writeTo(_output__)
}
def clearRootKeyIds = copy(rootKeyIds = _root_.scala.Seq.empty)
def addRootKeyIds(__vs: org.bitcoins.core.number.UInt64 *): ListMacaroonIDsResponse = addAllRootKeyIds(__vs)
def addAllRootKeyIds(__vs: Iterable[org.bitcoins.core.number.UInt64]): ListMacaroonIDsResponse = copy(rootKeyIds = rootKeyIds ++ __vs)
def withRootKeyIds(__v: _root_.scala.Seq[org.bitcoins.core.number.UInt64]): ListMacaroonIDsResponse = copy(rootKeyIds = __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 => rootKeyIds.iterator.map(lnrpc.ListMacaroonIDsResponse._typemapper_rootKeyIds.toBase(_)).toSeq
}
}
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(rootKeyIds.iterator.map(__e => _root_.scalapb.descriptors.PLong(lnrpc.ListMacaroonIDsResponse._typemapper_rootKeyIds.toBase(__e))).toVector)
}
}
def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
def companion: lnrpc.ListMacaroonIDsResponse.type = lnrpc.ListMacaroonIDsResponse
// @@protoc_insertion_point(GeneratedMessage[lnrpc.ListMacaroonIDsResponse])
}
object ListMacaroonIDsResponse extends scalapb.GeneratedMessageCompanion[lnrpc.ListMacaroonIDsResponse] {
implicit def messageCompanion: scalapb.GeneratedMessageCompanion[lnrpc.ListMacaroonIDsResponse] = this
def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): lnrpc.ListMacaroonIDsResponse = {
val __rootKeyIds: _root_.scala.collection.immutable.VectorBuilder[org.bitcoins.core.number.UInt64] = new _root_.scala.collection.immutable.VectorBuilder[org.bitcoins.core.number.UInt64]
var `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
var _done__ = false
while (!_done__) {
val _tag__ = _input__.readTag()
_tag__ match {
case 0 => _done__ = true
case 8 =>
__rootKeyIds += lnrpc.ListMacaroonIDsResponse._typemapper_rootKeyIds.toCustom(_input__.readUInt64())
case 10 => {
val length = _input__.readRawVarint32()
val oldLimit = _input__.pushLimit(length)
while (_input__.getBytesUntilLimit > 0) {
__rootKeyIds += lnrpc.ListMacaroonIDsResponse._typemapper_rootKeyIds.toCustom(_input__.readUInt64())
}
_input__.popLimit(oldLimit)
}
case tag =>
if (_unknownFields__ == null) {
_unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
}
_unknownFields__.parseField(tag, _input__)
}
}
lnrpc.ListMacaroonIDsResponse(
rootKeyIds = __rootKeyIds.result(),
unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
)
}
implicit def messageReads: _root_.scalapb.descriptors.Reads[lnrpc.ListMacaroonIDsResponse] = _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.ListMacaroonIDsResponse(
rootKeyIds = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).map(_.as[_root_.scala.Seq[_root_.scala.Long]]).getOrElse(_root_.scala.Seq.empty).iterator.map(lnrpc.ListMacaroonIDsResponse._typemapper_rootKeyIds.toCustom(_)).toSeq
)
case _ => throw new RuntimeException("Expected PMessage")
}
def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = LightningProto.javaDescriptor.getMessageTypes().get(174)
def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = LightningProto.scalaDescriptor.messages(174)
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.ListMacaroonIDsResponse(
rootKeyIds = _root_.scala.Seq.empty
)
implicit class ListMacaroonIDsResponseLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, lnrpc.ListMacaroonIDsResponse]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, lnrpc.ListMacaroonIDsResponse](_l) {
def rootKeyIds: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Seq[org.bitcoins.core.number.UInt64]] = field(_.rootKeyIds)((c_, f_) => c_.copy(rootKeyIds = f_))
}
final val ROOT_KEY_IDS_FIELD_NUMBER = 1
@transient
private[lnrpc] val _typemapper_rootKeyIds: _root_.scalapb.TypeMapper[_root_.scala.Long, org.bitcoins.core.number.UInt64] = implicitly[_root_.scalapb.TypeMapper[_root_.scala.Long, org.bitcoins.core.number.UInt64]]
def of(
rootKeyIds: _root_.scala.Seq[org.bitcoins.core.number.UInt64]
): _root_.lnrpc.ListMacaroonIDsResponse = _root_.lnrpc.ListMacaroonIDsResponse(
rootKeyIds
)
// @@protoc_insertion_point(GeneratedMessageCompanion[lnrpc.ListMacaroonIDsResponse])
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy