lnrpc.ListInvoiceResponse.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 invoices
*
* A list of invoices from the time slice of the time series specified in the
* request.
* @param lastIndexOffset
*
* The index of the last item in the set of returned invoices. This can be used
* to seek further, pagination style.
* @param firstIndexOffset
*
* The index of the last item in the set of returned invoices. This can be used
* to seek backwards, pagination style.
*/
@SerialVersionUID(0L)
final case class ListInvoiceResponse(
invoices: _root_.scala.Seq[lnrpc.Invoice] = _root_.scala.Seq.empty,
lastIndexOffset: org.bitcoins.core.number.UInt64 = lnrpc.ListInvoiceResponse._typemapper_lastIndexOffset.toCustom(0L),
firstIndexOffset: org.bitcoins.core.number.UInt64 = lnrpc.ListInvoiceResponse._typemapper_firstIndexOffset.toCustom(0L),
unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[ListInvoiceResponse] {
@transient
private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
private[this] def __computeSerializedSize(): _root_.scala.Int = {
var __size = 0
invoices.foreach { __item =>
val __value = __item
__size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
}
{
val __value = lnrpc.ListInvoiceResponse._typemapper_lastIndexOffset.toBase(lastIndexOffset)
if (__value != 0L) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeUInt64Size(2, __value)
}
};
{
val __value = lnrpc.ListInvoiceResponse._typemapper_firstIndexOffset.toBase(firstIndexOffset)
if (__value != 0L) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeUInt64Size(3, __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 = {
invoices.foreach { __v =>
val __m = __v
_output__.writeTag(1, 2)
_output__.writeUInt32NoTag(__m.serializedSize)
__m.writeTo(_output__)
};
{
val __v = lnrpc.ListInvoiceResponse._typemapper_lastIndexOffset.toBase(lastIndexOffset)
if (__v != 0L) {
_output__.writeUInt64(2, __v)
}
};
{
val __v = lnrpc.ListInvoiceResponse._typemapper_firstIndexOffset.toBase(firstIndexOffset)
if (__v != 0L) {
_output__.writeUInt64(3, __v)
}
};
unknownFields.writeTo(_output__)
}
def clearInvoices = copy(invoices = _root_.scala.Seq.empty)
def addInvoices(__vs: lnrpc.Invoice *): ListInvoiceResponse = addAllInvoices(__vs)
def addAllInvoices(__vs: Iterable[lnrpc.Invoice]): ListInvoiceResponse = copy(invoices = invoices ++ __vs)
def withInvoices(__v: _root_.scala.Seq[lnrpc.Invoice]): ListInvoiceResponse = copy(invoices = __v)
def withLastIndexOffset(__v: org.bitcoins.core.number.UInt64): ListInvoiceResponse = copy(lastIndexOffset = __v)
def withFirstIndexOffset(__v: org.bitcoins.core.number.UInt64): ListInvoiceResponse = copy(firstIndexOffset = __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 => invoices
case 2 => {
val __t = lnrpc.ListInvoiceResponse._typemapper_lastIndexOffset.toBase(lastIndexOffset)
if (__t != 0L) __t else null
}
case 3 => {
val __t = lnrpc.ListInvoiceResponse._typemapper_firstIndexOffset.toBase(firstIndexOffset)
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.PRepeated(invoices.iterator.map(_.toPMessage).toVector)
case 2 => _root_.scalapb.descriptors.PLong(lnrpc.ListInvoiceResponse._typemapper_lastIndexOffset.toBase(lastIndexOffset))
case 3 => _root_.scalapb.descriptors.PLong(lnrpc.ListInvoiceResponse._typemapper_firstIndexOffset.toBase(firstIndexOffset))
}
}
def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
def companion: lnrpc.ListInvoiceResponse.type = lnrpc.ListInvoiceResponse
// @@protoc_insertion_point(GeneratedMessage[lnrpc.ListInvoiceResponse])
}
object ListInvoiceResponse extends scalapb.GeneratedMessageCompanion[lnrpc.ListInvoiceResponse] {
implicit def messageCompanion: scalapb.GeneratedMessageCompanion[lnrpc.ListInvoiceResponse] = this
def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): lnrpc.ListInvoiceResponse = {
val __invoices: _root_.scala.collection.immutable.VectorBuilder[lnrpc.Invoice] = new _root_.scala.collection.immutable.VectorBuilder[lnrpc.Invoice]
var __lastIndexOffset: _root_.scala.Long = 0L
var __firstIndexOffset: _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 =>
__invoices += _root_.scalapb.LiteParser.readMessage[lnrpc.Invoice](_input__)
case 16 =>
__lastIndexOffset = _input__.readUInt64()
case 24 =>
__firstIndexOffset = _input__.readUInt64()
case tag =>
if (_unknownFields__ == null) {
_unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
}
_unknownFields__.parseField(tag, _input__)
}
}
lnrpc.ListInvoiceResponse(
invoices = __invoices.result(),
lastIndexOffset = lnrpc.ListInvoiceResponse._typemapper_lastIndexOffset.toCustom(__lastIndexOffset),
firstIndexOffset = lnrpc.ListInvoiceResponse._typemapper_firstIndexOffset.toCustom(__firstIndexOffset),
unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
)
}
implicit def messageReads: _root_.scalapb.descriptors.Reads[lnrpc.ListInvoiceResponse] = _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.ListInvoiceResponse(
invoices = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).map(_.as[_root_.scala.Seq[lnrpc.Invoice]]).getOrElse(_root_.scala.Seq.empty),
lastIndexOffset = lnrpc.ListInvoiceResponse._typemapper_lastIndexOffset.toCustom(__fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).map(_.as[_root_.scala.Long]).getOrElse(0L)),
firstIndexOffset = lnrpc.ListInvoiceResponse._typemapper_firstIndexOffset.toCustom(__fieldsMap.get(scalaDescriptor.findFieldByNumber(3).get).map(_.as[_root_.scala.Long]).getOrElse(0L))
)
case _ => throw new RuntimeException("Expected PMessage")
}
def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = LightningProto.javaDescriptor.getMessageTypes().get(134)
def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = LightningProto.scalaDescriptor.messages(134)
def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
(__number: @_root_.scala.unchecked) match {
case 1 => __out = lnrpc.Invoice
}
__out
}
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.ListInvoiceResponse(
invoices = _root_.scala.Seq.empty,
lastIndexOffset = lnrpc.ListInvoiceResponse._typemapper_lastIndexOffset.toCustom(0L),
firstIndexOffset = lnrpc.ListInvoiceResponse._typemapper_firstIndexOffset.toCustom(0L)
)
implicit class ListInvoiceResponseLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, lnrpc.ListInvoiceResponse]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, lnrpc.ListInvoiceResponse](_l) {
def invoices: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Seq[lnrpc.Invoice]] = field(_.invoices)((c_, f_) => c_.copy(invoices = f_))
def lastIndexOffset: _root_.scalapb.lenses.Lens[UpperPB, org.bitcoins.core.number.UInt64] = field(_.lastIndexOffset)((c_, f_) => c_.copy(lastIndexOffset = f_))
def firstIndexOffset: _root_.scalapb.lenses.Lens[UpperPB, org.bitcoins.core.number.UInt64] = field(_.firstIndexOffset)((c_, f_) => c_.copy(firstIndexOffset = f_))
}
final val INVOICES_FIELD_NUMBER = 1
final val LAST_INDEX_OFFSET_FIELD_NUMBER = 2
final val FIRST_INDEX_OFFSET_FIELD_NUMBER = 3
@transient
private[lnrpc] val _typemapper_lastIndexOffset: _root_.scalapb.TypeMapper[_root_.scala.Long, org.bitcoins.core.number.UInt64] = implicitly[_root_.scalapb.TypeMapper[_root_.scala.Long, org.bitcoins.core.number.UInt64]]
@transient
private[lnrpc] val _typemapper_firstIndexOffset: _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(
invoices: _root_.scala.Seq[lnrpc.Invoice],
lastIndexOffset: org.bitcoins.core.number.UInt64,
firstIndexOffset: org.bitcoins.core.number.UInt64
): _root_.lnrpc.ListInvoiceResponse = _root_.lnrpc.ListInvoiceResponse(
invoices,
lastIndexOffset,
firstIndexOffset
)
// @@protoc_insertion_point(GeneratedMessageCompanion[lnrpc.ListInvoiceResponse])
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy