com.wavesplatform.database.protobuf.AccountScriptInfo.scala Maven / Gradle / Ivy
The newest version!
// Generated by the Scala Plugin for the Protocol Buffer Compiler.
// Do not edit!
//
// Protofile syntax: PROTO3
package com.wavesplatform.database.protobuf
@SerialVersionUID(0L)
final case class AccountScriptInfo(
publicKey: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY,
scriptBytes: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY,
maxComplexity: _root_.scala.Long = 0L,
callableComplexity: _root_.scala.Seq[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion] = _root_.scala.Seq.empty,
unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[AccountScriptInfo] {
@transient
private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
private[this] def __computeSerializedSize(): _root_.scala.Int = {
var __size = 0
{
val __value = publicKey
if (!__value.isEmpty) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeBytesSize(1, __value)
}
};
{
val __value = scriptBytes
if (!__value.isEmpty) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeBytesSize(2, __value)
}
};
{
val __value = maxComplexity
if (__value != 0L) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeInt64Size(3, __value)
}
};
callableComplexity.foreach { __item =>
val __value = __item
__size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
}
__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 = publicKey
if (!__v.isEmpty) {
_output__.writeBytes(1, __v)
}
};
{
val __v = scriptBytes
if (!__v.isEmpty) {
_output__.writeBytes(2, __v)
}
};
{
val __v = maxComplexity
if (__v != 0L) {
_output__.writeInt64(3, __v)
}
};
callableComplexity.foreach { __v =>
val __m = __v
_output__.writeTag(4, 2)
_output__.writeUInt32NoTag(__m.serializedSize)
__m.writeTo(_output__)
};
unknownFields.writeTo(_output__)
}
def withPublicKey(__v: _root_.com.google.protobuf.ByteString): AccountScriptInfo = copy(publicKey = __v)
def withScriptBytes(__v: _root_.com.google.protobuf.ByteString): AccountScriptInfo = copy(scriptBytes = __v)
def withMaxComplexity(__v: _root_.scala.Long): AccountScriptInfo = copy(maxComplexity = __v)
def clearCallableComplexity = copy(callableComplexity = _root_.scala.Seq.empty)
def addCallableComplexity(__vs: com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion *): AccountScriptInfo = addAllCallableComplexity(__vs)
def addAllCallableComplexity(__vs: Iterable[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion]): AccountScriptInfo = copy(callableComplexity = callableComplexity ++ __vs)
def withCallableComplexity(__v: _root_.scala.Seq[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion]): AccountScriptInfo = copy(callableComplexity = __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 = publicKey
if (__t != _root_.com.google.protobuf.ByteString.EMPTY) __t else null
}
case 2 => {
val __t = scriptBytes
if (__t != _root_.com.google.protobuf.ByteString.EMPTY) __t else null
}
case 3 => {
val __t = maxComplexity
if (__t != 0L) __t else null
}
case 4 => callableComplexity
}
}
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.PByteString(publicKey)
case 2 => _root_.scalapb.descriptors.PByteString(scriptBytes)
case 3 => _root_.scalapb.descriptors.PLong(maxComplexity)
case 4 => _root_.scalapb.descriptors.PRepeated(callableComplexity.iterator.map(_.toPMessage).toVector)
}
}
def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
def companion: com.wavesplatform.database.protobuf.AccountScriptInfo.type = com.wavesplatform.database.protobuf.AccountScriptInfo
// @@protoc_insertion_point(GeneratedMessage[waves.api.AccountScriptInfo])
}
object AccountScriptInfo extends scalapb.GeneratedMessageCompanion[com.wavesplatform.database.protobuf.AccountScriptInfo] {
implicit def messageCompanion: scalapb.GeneratedMessageCompanion[com.wavesplatform.database.protobuf.AccountScriptInfo] = this
def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): com.wavesplatform.database.protobuf.AccountScriptInfo = {
var __publicKey: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY
var __scriptBytes: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY
var __maxComplexity: _root_.scala.Long = 0L
val __callableComplexity: _root_.scala.collection.immutable.VectorBuilder[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion] = new _root_.scala.collection.immutable.VectorBuilder[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion]
var `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
var _done__ = false
while (!_done__) {
val _tag__ = _input__.readTag()
_tag__ match {
case 0 => _done__ = true
case 10 =>
__publicKey = _input__.readBytes()
case 18 =>
__scriptBytes = _input__.readBytes()
case 24 =>
__maxComplexity = _input__.readInt64()
case 34 =>
__callableComplexity += _root_.scalapb.LiteParser.readMessage[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion](_input__)
case tag =>
if (_unknownFields__ == null) {
_unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
}
_unknownFields__.parseField(tag, _input__)
}
}
com.wavesplatform.database.protobuf.AccountScriptInfo(
publicKey = __publicKey,
scriptBytes = __scriptBytes,
maxComplexity = __maxComplexity,
callableComplexity = __callableComplexity.result(),
unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
)
}
implicit def messageReads: _root_.scalapb.descriptors.Reads[com.wavesplatform.database.protobuf.AccountScriptInfo] = _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.")
com.wavesplatform.database.protobuf.AccountScriptInfo(
publicKey = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).map(_.as[_root_.com.google.protobuf.ByteString]).getOrElse(_root_.com.google.protobuf.ByteString.EMPTY),
scriptBytes = __fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).map(_.as[_root_.com.google.protobuf.ByteString]).getOrElse(_root_.com.google.protobuf.ByteString.EMPTY),
maxComplexity = __fieldsMap.get(scalaDescriptor.findFieldByNumber(3).get).map(_.as[_root_.scala.Long]).getOrElse(0L),
callableComplexity = __fieldsMap.get(scalaDescriptor.findFieldByNumber(4).get).map(_.as[_root_.scala.Seq[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion]]).getOrElse(_root_.scala.Seq.empty)
)
case _ => throw new RuntimeException("Expected PMessage")
}
def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = DatabaseProto.javaDescriptor.getMessageTypes().get(5)
def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = DatabaseProto.scalaDescriptor.messages(5)
def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
(__number: @_root_.scala.unchecked) match {
case 4 => __out = com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion
}
__out
}
lazy val nestedMessagesCompanions: Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]] =
Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]](
_root_.com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion
)
def enumCompanionForFieldNumber(__fieldNumber: _root_.scala.Int): _root_.scalapb.GeneratedEnumCompanion[_] = throw new MatchError(__fieldNumber)
lazy val defaultInstance = com.wavesplatform.database.protobuf.AccountScriptInfo(
publicKey = _root_.com.google.protobuf.ByteString.EMPTY,
scriptBytes = _root_.com.google.protobuf.ByteString.EMPTY,
maxComplexity = 0L,
callableComplexity = _root_.scala.Seq.empty
)
@SerialVersionUID(0L)
final case class ComplexityByVersion(
version: _root_.scala.Int = 0,
callableComplexity: _root_.scala.collection.immutable.Map[_root_.scala.Predef.String, _root_.scala.Long] = _root_.scala.collection.immutable.Map.empty,
unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[ComplexityByVersion] {
@transient
private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
private[this] def __computeSerializedSize(): _root_.scala.Int = {
var __size = 0
{
val __value = version
if (__value != 0) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeInt32Size(1, __value)
}
};
callableComplexity.foreach { __item =>
val __value = com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion._typemapper_callableComplexity.toBase(__item)
__size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
}
__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 = version
if (__v != 0) {
_output__.writeInt32(1, __v)
}
};
callableComplexity.foreach { __v =>
val __m = com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion._typemapper_callableComplexity.toBase(__v)
_output__.writeTag(2, 2)
_output__.writeUInt32NoTag(__m.serializedSize)
__m.writeTo(_output__)
};
unknownFields.writeTo(_output__)
}
def withVersion(__v: _root_.scala.Int): ComplexityByVersion = copy(version = __v)
def clearCallableComplexity = copy(callableComplexity = _root_.scala.collection.immutable.Map.empty)
def addCallableComplexity(__vs: (_root_.scala.Predef.String, _root_.scala.Long) *): ComplexityByVersion = addAllCallableComplexity(__vs)
def addAllCallableComplexity(__vs: Iterable[(_root_.scala.Predef.String, _root_.scala.Long)]): ComplexityByVersion = copy(callableComplexity = callableComplexity ++ __vs)
def withCallableComplexity(__v: _root_.scala.collection.immutable.Map[_root_.scala.Predef.String, _root_.scala.Long]): ComplexityByVersion = copy(callableComplexity = __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 = version
if (__t != 0) __t else null
}
case 2 => callableComplexity.iterator.map(com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion._typemapper_callableComplexity.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.PInt(version)
case 2 => _root_.scalapb.descriptors.PRepeated(callableComplexity.iterator.map(com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion._typemapper_callableComplexity.toBase(_).toPMessage).toVector)
}
}
def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
def companion: com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.type = com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion
// @@protoc_insertion_point(GeneratedMessage[waves.api.AccountScriptInfo.ComplexityByVersion])
}
object ComplexityByVersion extends scalapb.GeneratedMessageCompanion[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion] {
implicit def messageCompanion: scalapb.GeneratedMessageCompanion[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion] = this
def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion = {
var __version: _root_.scala.Int = 0
val __callableComplexity: _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 `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
var _done__ = false
while (!_done__) {
val _tag__ = _input__.readTag()
_tag__ match {
case 0 => _done__ = true
case 8 =>
__version = _input__.readInt32()
case 18 =>
__callableComplexity += com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion._typemapper_callableComplexity.toCustom(_root_.scalapb.LiteParser.readMessage[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry](_input__))
case tag =>
if (_unknownFields__ == null) {
_unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
}
_unknownFields__.parseField(tag, _input__)
}
}
com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion(
version = __version,
callableComplexity = __callableComplexity.result(),
unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
)
}
implicit def messageReads: _root_.scalapb.descriptors.Reads[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion] = _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.")
com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion(
version = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).map(_.as[_root_.scala.Int]).getOrElse(0),
callableComplexity = __fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).map(_.as[_root_.scala.Seq[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry]]).getOrElse(_root_.scala.Seq.empty).iterator.map(com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion._typemapper_callableComplexity.toCustom(_)).toMap
)
case _ => throw new RuntimeException("Expected PMessage")
}
def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = com.wavesplatform.database.protobuf.AccountScriptInfo.javaDescriptor.getNestedTypes().get(0)
def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = com.wavesplatform.database.protobuf.AccountScriptInfo.scalaDescriptor.nestedMessages(0)
def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
(__number: @_root_.scala.unchecked) match {
case 2 => __out = com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry
}
__out
}
lazy val nestedMessagesCompanions: Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]] =
Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]](
_root_.com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry
)
def enumCompanionForFieldNumber(__fieldNumber: _root_.scala.Int): _root_.scalapb.GeneratedEnumCompanion[_] = throw new MatchError(__fieldNumber)
lazy val defaultInstance = com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion(
version = 0,
callableComplexity = _root_.scala.collection.immutable.Map.empty
)
@SerialVersionUID(0L)
final case class CallableComplexityEntry(
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[CallableComplexityEntry] {
@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): CallableComplexityEntry = copy(key = __v)
def withValue(__v: _root_.scala.Long): CallableComplexityEntry = 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: com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry.type = com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry
// @@protoc_insertion_point(GeneratedMessage[waves.api.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry])
}
object CallableComplexityEntry extends scalapb.GeneratedMessageCompanion[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry] {
implicit def messageCompanion: scalapb.GeneratedMessageCompanion[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry] = this
def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry = {
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__)
}
}
com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry(
key = __key,
value = __value,
unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
)
}
implicit def messageReads: _root_.scalapb.descriptors.Reads[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry] = _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.")
com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry(
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 = com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.javaDescriptor.getNestedTypes().get(0)
def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.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 = com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry(
key = "",
value = 0L
)
implicit class CallableComplexityEntryLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry](_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[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry, (_root_.scala.Predef.String, _root_.scala.Long)] =
_root_.scalapb.TypeMapper[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry, (_root_.scala.Predef.String, _root_.scala.Long)](__m => (__m.key, __m.value))(__p => com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry(__p._1, __p._2))
def of(
key: _root_.scala.Predef.String,
value: _root_.scala.Long
): _root_.com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry = _root_.com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry(
key,
value
)
// @@protoc_insertion_point(GeneratedMessageCompanion[waves.api.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry])
}
implicit class ComplexityByVersionLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion](_l) {
def version: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Int] = field(_.version)((c_, f_) => c_.copy(version = f_))
def callableComplexity: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.collection.immutable.Map[_root_.scala.Predef.String, _root_.scala.Long]] = field(_.callableComplexity)((c_, f_) => c_.copy(callableComplexity = f_))
}
final val VERSION_FIELD_NUMBER = 1
final val CALLABLE_COMPLEXITY_FIELD_NUMBER = 2
@transient
private[protobuf] val _typemapper_callableComplexity: _root_.scalapb.TypeMapper[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry, (_root_.scala.Predef.String, _root_.scala.Long)] = implicitly[_root_.scalapb.TypeMapper[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion.CallableComplexityEntry, (_root_.scala.Predef.String, _root_.scala.Long)]]
def of(
version: _root_.scala.Int,
callableComplexity: _root_.scala.collection.immutable.Map[_root_.scala.Predef.String, _root_.scala.Long]
): _root_.com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion = _root_.com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion(
version,
callableComplexity
)
// @@protoc_insertion_point(GeneratedMessageCompanion[waves.api.AccountScriptInfo.ComplexityByVersion])
}
implicit class AccountScriptInfoLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, com.wavesplatform.database.protobuf.AccountScriptInfo]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, com.wavesplatform.database.protobuf.AccountScriptInfo](_l) {
def publicKey: _root_.scalapb.lenses.Lens[UpperPB, _root_.com.google.protobuf.ByteString] = field(_.publicKey)((c_, f_) => c_.copy(publicKey = f_))
def scriptBytes: _root_.scalapb.lenses.Lens[UpperPB, _root_.com.google.protobuf.ByteString] = field(_.scriptBytes)((c_, f_) => c_.copy(scriptBytes = f_))
def maxComplexity: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Long] = field(_.maxComplexity)((c_, f_) => c_.copy(maxComplexity = f_))
def callableComplexity: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Seq[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion]] = field(_.callableComplexity)((c_, f_) => c_.copy(callableComplexity = f_))
}
final val PUBLIC_KEY_FIELD_NUMBER = 1
final val SCRIPT_BYTES_FIELD_NUMBER = 2
final val MAX_COMPLEXITY_FIELD_NUMBER = 3
final val CALLABLE_COMPLEXITY_FIELD_NUMBER = 4
def of(
publicKey: _root_.com.google.protobuf.ByteString,
scriptBytes: _root_.com.google.protobuf.ByteString,
maxComplexity: _root_.scala.Long,
callableComplexity: _root_.scala.Seq[com.wavesplatform.database.protobuf.AccountScriptInfo.ComplexityByVersion]
): _root_.com.wavesplatform.database.protobuf.AccountScriptInfo = _root_.com.wavesplatform.database.protobuf.AccountScriptInfo(
publicKey,
scriptBytes,
maxComplexity,
callableComplexity
)
// @@protoc_insertion_point(GeneratedMessageCompanion[waves.api.AccountScriptInfo])
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy