1 /*
2  *  Make.org Core API
3  *  Copyright (C) 2018 Make.org
4  *
5  * This program is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU Affero General Public License as
7  *  published by the Free Software Foundation, either version 3 of the
8  *  License, or (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU Affero General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Affero General Public License
16  *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
17  *
18  */
19 
20 package org.make.api.tag
21 
22 import io.circe.generic.semiauto.{deriveDecoder, deriveEncoder}
23 import io.circe.{Decoder, Encoder}
24 import io.swagger.annotations.{ApiModel, ApiModelProperty}
25 import org.make.core.operation.OperationId
26 import org.make.core.question.QuestionId
27 import org.make.core.tag.{Tag, TagDisplay, TagId, TagTypeId}
28 
29 import scala.annotation.meta.field
30 
31 @ApiModel
32 final case class TagResponse(
33   @(ApiModelProperty @field)(dataType = "string", example = "11111111-2222-3333-4444-555555555555", required = true)
34   id: TagId,
35   label: String,
36   @(ApiModelProperty @field)(dataType = "string", allowableValues = TagDisplay.swaggerAllowableValues, required = true) display: TagDisplay,
37   @(ApiModelProperty @field)(dataType = "string", example = "11111111-2222-3333-4444-555555555555", required = true) tagTypeId: TagTypeId,
38   weight: Float,
39   @(ApiModelProperty @field)(dataType = "string", example = "11111111-2222-3333-4444-555555555555")
40   operationId: Option[OperationId],
41   @(ApiModelProperty @field)(dataType = "string", example = "11111111-2222-3333-4444-555555555555")
42   questionId: Option[QuestionId]
43 )
44 
45 object TagResponse {
46   implicit val encoder: Encoder[TagResponse] = deriveEncoder[TagResponse]
47   implicit val decoder: Decoder[TagResponse] = deriveDecoder[TagResponse]
48 
49   def apply(tag: Tag): TagResponse =
50     TagResponse(
51       id = tag.tagId,
52       label = tag.label,
53       display = tag.display,
54       tagTypeId = tag.tagTypeId,
55       weight = tag.weight,
56       operationId = tag.operationId,
57       questionId = tag.questionId
58     )
59 }
Line Stmt Id Pos Tree Symbol Tests Code
46 36182 1935 - 1961 ApplyToImplicitArgs io.circe.generic.semiauto.deriveEncoder io.circe.generic.semiauto.deriveEncoder[org.make.api.tag.TagResponse]({ val inst$macro$32: io.circe.generic.encoding.DerivedAsObjectEncoder[org.make.api.tag.TagResponse] = { final class anon$lazy$macro$31 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$31 = { anon$lazy$macro$31.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.encoding.DerivedAsObjectEncoder[org.make.api.tag.TagResponse] = encoding.this.DerivedAsObjectEncoder.deriveEncoder[org.make.api.tag.TagResponse, shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.tag.TagResponse, (Symbol @@ String("id")) :: (Symbol @@ String("label")) :: (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, org.make.core.tag.TagId :: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.tag.TagResponse, (Symbol @@ String("id")) :: (Symbol @@ String("label")) :: (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil](::.apply[Symbol @@ String("id"), (Symbol @@ String("label")) :: (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("id").asInstanceOf[Symbol @@ String("id")], ::.apply[Symbol @@ String("label"), (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("label").asInstanceOf[Symbol @@ String("label")], ::.apply[Symbol @@ String("display"), (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("display").asInstanceOf[Symbol @@ String("display")], ::.apply[Symbol @@ String("tagTypeId"), (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("tagTypeId").asInstanceOf[Symbol @@ String("tagTypeId")], ::.apply[Symbol @@ String("weight"), (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("weight").asInstanceOf[Symbol @@ String("weight")], ::.apply[Symbol @@ String("operationId"), (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("operationId").asInstanceOf[Symbol @@ String("operationId")], ::.apply[Symbol @@ String("questionId"), shapeless.HNil.type](scala.Symbol.apply("questionId").asInstanceOf[Symbol @@ String("questionId")], HNil)))))))), Generic.instance[org.make.api.tag.TagResponse, org.make.core.tag.TagId :: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil](((x0$3: org.make.api.tag.TagResponse) => x0$3 match { case (id: org.make.core.tag.TagId, label: String, display: org.make.core.tag.TagDisplay, tagTypeId: org.make.core.tag.TagTypeId, weight: Float, operationId: Option[org.make.core.operation.OperationId], questionId: Option[org.make.core.question.QuestionId]): org.make.api.tag.TagResponse((id$macro$23 @ _), (label$macro$24 @ _), (display$macro$25 @ _), (tagTypeId$macro$26 @ _), (weight$macro$27 @ _), (operationId$macro$28 @ _), (questionId$macro$29 @ _)) => ::.apply[org.make.core.tag.TagId, String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](id$macro$23, ::.apply[String, org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](label$macro$24, ::.apply[org.make.core.tag.TagDisplay, org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](display$macro$25, ::.apply[org.make.core.tag.TagTypeId, Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](tagTypeId$macro$26, ::.apply[Float, Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](weight$macro$27, ::.apply[Option[org.make.core.operation.OperationId], Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](operationId$macro$28, ::.apply[Option[org.make.core.question.QuestionId], shapeless.HNil.type](questionId$macro$29, HNil))))))).asInstanceOf[org.make.core.tag.TagId :: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil] }), ((x0$4: org.make.core.tag.TagId :: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil) => x0$4 match { case (head: org.make.core.tag.TagId, tail: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil): org.make.core.tag.TagId :: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((id$macro$16 @ _), (head: String, tail: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil): String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((label$macro$17 @ _), (head: org.make.core.tag.TagDisplay, tail: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil): org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((display$macro$18 @ _), (head: org.make.core.tag.TagTypeId, tail: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil): org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((tagTypeId$macro$19 @ _), (head: Float, tail: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil): Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((weight$macro$20 @ _), (head: Option[org.make.core.operation.OperationId], tail: Option[org.make.core.question.QuestionId] :: shapeless.HNil): Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((operationId$macro$21 @ _), (head: Option[org.make.core.question.QuestionId], tail: shapeless.HNil): Option[org.make.core.question.QuestionId] :: shapeless.HNil((questionId$macro$22 @ _), HNil))))))) => tag.this.TagResponse.apply(id$macro$16, label$macro$17, display$macro$18, tagTypeId$macro$19, weight$macro$20, operationId$macro$21, questionId$macro$22) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("id"), org.make.core.tag.TagId, (Symbol @@ String("label")) :: (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("label"), String, (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("display"), org.make.core.tag.TagDisplay, (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("tagTypeId"), org.make.core.tag.TagTypeId, (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("weight"), Float, (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("operationId"), Option[org.make.core.operation.OperationId], (Symbol @@ String("questionId")) :: shapeless.HNil, Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("questionId"), Option[org.make.core.question.QuestionId], shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("questionId")]](scala.Symbol.apply("questionId").asInstanceOf[Symbol @@ String("questionId")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("questionId")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("operationId")]](scala.Symbol.apply("operationId").asInstanceOf[Symbol @@ String("operationId")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("operationId")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("weight")]](scala.Symbol.apply("weight").asInstanceOf[Symbol @@ String("weight")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("weight")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("tagTypeId")]](scala.Symbol.apply("tagTypeId").asInstanceOf[Symbol @@ String("tagTypeId")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("tagTypeId")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("display")]](scala.Symbol.apply("display").asInstanceOf[Symbol @@ String("display")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("display")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("label")]](scala.Symbol.apply("label").asInstanceOf[Symbol @@ String("label")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("label")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("id")]](scala.Symbol.apply("id").asInstanceOf[Symbol @@ String("id")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("id")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.encoding.ReprAsObjectEncoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$31.this.inst$macro$30)).asInstanceOf[io.circe.generic.encoding.DerivedAsObjectEncoder[org.make.api.tag.TagResponse]]; <stable> <accessor> lazy val inst$macro$30: io.circe.generic.encoding.ReprAsObjectEncoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.encoding.ReprAsObjectEncoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.encoding.ReprAsObjectEncoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericEncoderForid: io.circe.Encoder[org.make.core.tag.TagId] = tag.this.TagId.tagIdEncoder; private[this] val circeGenericEncoderForlabel: io.circe.Encoder[String] = circe.this.Encoder.encodeString; private[this] val circeGenericEncoderFordisplay: io.circe.Encoder[org.make.core.tag.TagDisplay] = tag.this.TagDisplay.encoder(circe.this.Encoder.encodeString); private[this] val circeGenericEncoderFortagTypeId: io.circe.Encoder[org.make.core.tag.TagTypeId] = tag.this.TagTypeId.tagIdEncoder; private[this] val circeGenericEncoderForweight: io.circe.Encoder[Float] = circe.this.Encoder.encodeFloat; private[this] val circeGenericEncoderForoperationId: io.circe.Encoder[Option[org.make.core.operation.OperationId]] = circe.this.Encoder.encodeOption[org.make.core.operation.OperationId](operation.this.OperationId.operationIdEncoder); private[this] val circeGenericEncoderForquestionId: io.circe.Encoder[Option[org.make.core.question.QuestionId]] = circe.this.Encoder.encodeOption[org.make.core.question.QuestionId](question.this.QuestionId.QuestionIdEncoder); final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId], tail: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForid @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("label"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForlabel @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay], tail: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordisplay @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId], tail: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFortagTypeId @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float], tail: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForweight @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]], tail: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForoperationId @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForquestionId @ _), shapeless.HNil))))))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("id", $anon.this.circeGenericEncoderForid.apply(circeGenericHListBindingForid)), scala.Tuple2.apply[String, io.circe.Json]("label", $anon.this.circeGenericEncoderForlabel.apply(circeGenericHListBindingForlabel)), scala.Tuple2.apply[String, io.circe.Json]("display", $anon.this.circeGenericEncoderFordisplay.apply(circeGenericHListBindingFordisplay)), scala.Tuple2.apply[String, io.circe.Json]("tagTypeId", $anon.this.circeGenericEncoderFortagTypeId.apply(circeGenericHListBindingFortagTypeId)), scala.Tuple2.apply[String, io.circe.Json]("weight", $anon.this.circeGenericEncoderForweight.apply(circeGenericHListBindingForweight)), scala.Tuple2.apply[String, io.circe.Json]("operationId", $anon.this.circeGenericEncoderForoperationId.apply(circeGenericHListBindingForoperationId)), scala.Tuple2.apply[String, io.circe.Json]("questionId", $anon.this.circeGenericEncoderForquestionId.apply(circeGenericHListBindingForquestionId)))) } }; new $anon() }: io.circe.generic.encoding.ReprAsObjectEncoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.encoding.ReprAsObjectEncoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$31().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.encoding.DerivedAsObjectEncoder[org.make.api.tag.TagResponse]](inst$macro$32) })
47 49461 2009 - 2035 ApplyToImplicitArgs io.circe.generic.semiauto.deriveDecoder io.circe.generic.semiauto.deriveDecoder[org.make.api.tag.TagResponse]({ val inst$macro$64: io.circe.generic.decoding.DerivedDecoder[org.make.api.tag.TagResponse] = { final class anon$lazy$macro$63 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$63 = { anon$lazy$macro$63.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$33: io.circe.generic.decoding.DerivedDecoder[org.make.api.tag.TagResponse] = decoding.this.DerivedDecoder.deriveDecoder[org.make.api.tag.TagResponse, shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.tag.TagResponse, (Symbol @@ String("id")) :: (Symbol @@ String("label")) :: (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, org.make.core.tag.TagId :: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.tag.TagResponse, (Symbol @@ String("id")) :: (Symbol @@ String("label")) :: (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil](::.apply[Symbol @@ String("id"), (Symbol @@ String("label")) :: (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("id").asInstanceOf[Symbol @@ String("id")], ::.apply[Symbol @@ String("label"), (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("label").asInstanceOf[Symbol @@ String("label")], ::.apply[Symbol @@ String("display"), (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("display").asInstanceOf[Symbol @@ String("display")], ::.apply[Symbol @@ String("tagTypeId"), (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("tagTypeId").asInstanceOf[Symbol @@ String("tagTypeId")], ::.apply[Symbol @@ String("weight"), (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("weight").asInstanceOf[Symbol @@ String("weight")], ::.apply[Symbol @@ String("operationId"), (Symbol @@ String("questionId")) :: shapeless.HNil.type](scala.Symbol.apply("operationId").asInstanceOf[Symbol @@ String("operationId")], ::.apply[Symbol @@ String("questionId"), shapeless.HNil.type](scala.Symbol.apply("questionId").asInstanceOf[Symbol @@ String("questionId")], HNil)))))))), Generic.instance[org.make.api.tag.TagResponse, org.make.core.tag.TagId :: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil](((x0$7: org.make.api.tag.TagResponse) => x0$7 match { case (id: org.make.core.tag.TagId, label: String, display: org.make.core.tag.TagDisplay, tagTypeId: org.make.core.tag.TagTypeId, weight: Float, operationId: Option[org.make.core.operation.OperationId], questionId: Option[org.make.core.question.QuestionId]): org.make.api.tag.TagResponse((id$macro$55 @ _), (label$macro$56 @ _), (display$macro$57 @ _), (tagTypeId$macro$58 @ _), (weight$macro$59 @ _), (operationId$macro$60 @ _), (questionId$macro$61 @ _)) => ::.apply[org.make.core.tag.TagId, String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](id$macro$55, ::.apply[String, org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](label$macro$56, ::.apply[org.make.core.tag.TagDisplay, org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](display$macro$57, ::.apply[org.make.core.tag.TagTypeId, Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](tagTypeId$macro$58, ::.apply[Float, Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](weight$macro$59, ::.apply[Option[org.make.core.operation.OperationId], Option[org.make.core.question.QuestionId] :: shapeless.HNil.type](operationId$macro$60, ::.apply[Option[org.make.core.question.QuestionId], shapeless.HNil.type](questionId$macro$61, HNil))))))).asInstanceOf[org.make.core.tag.TagId :: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil] }), ((x0$8: org.make.core.tag.TagId :: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil) => x0$8 match { case (head: org.make.core.tag.TagId, tail: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil): org.make.core.tag.TagId :: String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((id$macro$48 @ _), (head: String, tail: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil): String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((label$macro$49 @ _), (head: org.make.core.tag.TagDisplay, tail: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil): org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((display$macro$50 @ _), (head: org.make.core.tag.TagTypeId, tail: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil): org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((tagTypeId$macro$51 @ _), (head: Float, tail: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil): Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((weight$macro$52 @ _), (head: Option[org.make.core.operation.OperationId], tail: Option[org.make.core.question.QuestionId] :: shapeless.HNil): Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil((operationId$macro$53 @ _), (head: Option[org.make.core.question.QuestionId], tail: shapeless.HNil): Option[org.make.core.question.QuestionId] :: shapeless.HNil((questionId$macro$54 @ _), HNil))))))) => tag.this.TagResponse.apply(id$macro$48, label$macro$49, display$macro$50, tagTypeId$macro$51, weight$macro$52, operationId$macro$53, questionId$macro$54) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("id"), org.make.core.tag.TagId, (Symbol @@ String("label")) :: (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, String :: org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("label"), String, (Symbol @@ String("display")) :: (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, org.make.core.tag.TagDisplay :: org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("display"), org.make.core.tag.TagDisplay, (Symbol @@ String("tagTypeId")) :: (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, org.make.core.tag.TagTypeId :: Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("tagTypeId"), org.make.core.tag.TagTypeId, (Symbol @@ String("weight")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, Float :: Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("weight"), Float, (Symbol @@ String("operationId")) :: (Symbol @@ String("questionId")) :: shapeless.HNil, Option[org.make.core.operation.OperationId] :: Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("operationId"), Option[org.make.core.operation.OperationId], (Symbol @@ String("questionId")) :: shapeless.HNil, Option[org.make.core.question.QuestionId] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("questionId"), Option[org.make.core.question.QuestionId], shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("questionId")]](scala.Symbol.apply("questionId").asInstanceOf[Symbol @@ String("questionId")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("questionId")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("operationId")]](scala.Symbol.apply("operationId").asInstanceOf[Symbol @@ String("operationId")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("operationId")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("weight")]](scala.Symbol.apply("weight").asInstanceOf[Symbol @@ String("weight")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("weight")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("tagTypeId")]](scala.Symbol.apply("tagTypeId").asInstanceOf[Symbol @@ String("tagTypeId")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("tagTypeId")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("display")]](scala.Symbol.apply("display").asInstanceOf[Symbol @@ String("display")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("display")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("label")]](scala.Symbol.apply("label").asInstanceOf[Symbol @@ String("label")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("label")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("id")]](scala.Symbol.apply("id").asInstanceOf[Symbol @@ String("id")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("id")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.decoding.ReprDecoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$63.this.inst$macro$62)).asInstanceOf[io.circe.generic.decoding.DerivedDecoder[org.make.api.tag.TagResponse]]; <stable> <accessor> lazy val inst$macro$62: io.circe.generic.decoding.ReprDecoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.decoding.ReprDecoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.decoding.ReprDecoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForid: io.circe.Decoder[org.make.core.tag.TagId] = tag.this.TagId.tagIdDecoder; private[this] val circeGenericDecoderForlabel: io.circe.Decoder[String] = circe.this.Decoder.decodeString; private[this] val circeGenericDecoderFordisplay: io.circe.Decoder[org.make.core.tag.TagDisplay] = tag.this.TagDisplay.decoder(circe.this.Decoder.decodeString); private[this] val circeGenericDecoderFortagTypeId: io.circe.Decoder[org.make.core.tag.TagTypeId] = tag.this.TagTypeId.tagIdDecoder; private[this] val circeGenericDecoderForweight: io.circe.Decoder[Float] = circe.this.Decoder.decodeFloat; private[this] val circeGenericDecoderForoperationId: io.circe.Decoder[Option[org.make.core.operation.OperationId]] = circe.this.Decoder.decodeOption[org.make.core.operation.OperationId](operation.this.OperationId.operationIdDecoder); private[this] val circeGenericDecoderForquestionId: io.circe.Decoder[Option[org.make.core.question.QuestionId]] = circe.this.Decoder.decodeOption[org.make.core.question.QuestionId](question.this.QuestionId.QuestionIdDecoder); final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("id"), org.make.core.tag.TagId, shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForid.tryDecode(c.downField("id")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("label"), String, shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlabel.tryDecode(c.downField("label")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("display"), org.make.core.tag.TagDisplay, shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordisplay.tryDecode(c.downField("display")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("tagTypeId"), org.make.core.tag.TagTypeId, shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortagTypeId.tryDecode(c.downField("tagTypeId")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("weight"), Float, shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForweight.tryDecode(c.downField("weight")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("operationId"), Option[org.make.core.operation.OperationId], shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForoperationId.tryDecode(c.downField("operationId")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("questionId"), Option[org.make.core.question.QuestionId], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestionId.tryDecode(c.downField("questionId")), ReprDecoder.hnilResult)(io.circe.Decoder.resultInstance))(io.circe.Decoder.resultInstance))(io.circe.Decoder.resultInstance))(io.circe.Decoder.resultInstance))(io.circe.Decoder.resultInstance))(io.circe.Decoder.resultInstance))(io.circe.Decoder.resultInstance); final override def decodeAccumulating(c: io.circe.HCursor): io.circe.Decoder.AccumulatingResult[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("id"), org.make.core.tag.TagId, shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForid.tryDecodeAccumulating(c.downField("id")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("label"), String, shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlabel.tryDecodeAccumulating(c.downField("label")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("display"), org.make.core.tag.TagDisplay, shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordisplay.tryDecodeAccumulating(c.downField("display")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("tagTypeId"), org.make.core.tag.TagTypeId, shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortagTypeId.tryDecodeAccumulating(c.downField("tagTypeId")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("weight"), Float, shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForweight.tryDecodeAccumulating(c.downField("weight")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("operationId"), Option[org.make.core.operation.OperationId], shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForoperationId.tryDecodeAccumulating(c.downField("operationId")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("questionId"), Option[org.make.core.question.QuestionId], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestionId.tryDecodeAccumulating(c.downField("questionId")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.decoding.ReprDecoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.decoding.ReprDecoder[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.tag.TagId] :: shapeless.labelled.FieldType[Symbol @@ String("label"),String] :: shapeless.labelled.FieldType[Symbol @@ String("display"),org.make.core.tag.TagDisplay] :: shapeless.labelled.FieldType[Symbol @@ String("tagTypeId"),org.make.core.tag.TagTypeId] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),Option[org.make.core.operation.OperationId]] :: shapeless.labelled.FieldType[Symbol @@ String("questionId"),Option[org.make.core.question.QuestionId]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$63().inst$macro$33 }; shapeless.Lazy.apply[io.circe.generic.decoding.DerivedDecoder[org.make.api.tag.TagResponse]](inst$macro$64) })
50 36219 2078 - 2303 Apply org.make.api.tag.TagResponse.apply TagResponse.apply(tag.tagId, tag.label, tag.display, tag.tagTypeId, tag.weight, tag.operationId, tag.questionId)
51 46066 2102 - 2111 Select org.make.core.tag.Tag.tagId tag.tagId
52 37183 2127 - 2136 Select org.make.core.tag.Tag.label tag.label
53 50565 2154 - 2165 Select org.make.core.tag.Tag.display tag.display
54 42691 2185 - 2198 Select org.make.core.tag.Tag.tagTypeId tag.tagTypeId
55 35107 2215 - 2225 Select org.make.core.tag.Tag.weight tag.weight
56 31694 2247 - 2262 Select org.make.core.tag.Tag.operationId tag.operationId
57 43710 2283 - 2297 Select org.make.core.tag.Tag.questionId tag.questionId