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.question
21 
22 import cats.Show
23 import cats.data.NonEmptyList
24 import eu.timepit.refined.auto._
25 import eu.timepit.refined.api.Refined
26 import eu.timepit.refined.collection._
27 import io.circe.generic.semiauto.deriveCodec
28 import io.circe.Codec
29 import io.swagger.annotations.ApiModelProperty
30 import io.circe.refined._
31 import org.make.api.operation.ResultsLinkResponse
32 import org.make.api.proposal.ProposalResponse
33 import org.make.core.technical.Multilingual
34 import org.make.core.feature.FeatureSlug
35 import org.make.core.operation._
36 import org.make.core.operation.indexed.IndexedOperationOfQuestion
37 import org.make.core.partner.{Partner, PartnerKind}
38 import org.make.core.question.{Question, QuestionId}
39 import org.make.core.reference.{Country, Language}
40 import org.make.core.user.{User, UserId}
41 import org.make.core.{CirceFormatters, SlugHelper}
42 
43 import java.time.{LocalDate, ZonedDateTime}
44 import scala.annotation.meta.field
45 
46 final case class ModerationQuestionResponse(
47   @(ApiModelProperty @field)(dataType = "string", example = "11111111-2222-3333-4444-555555555555", required = true)
48   id: QuestionId,
49   slug: String,
50   questions: Multilingual[String Refined NonEmpty],
51   shortTitles: Option[Multilingual[String Refined NonEmpty]],
52   @(ApiModelProperty @field)(dataType = "list[string]", required = true)
53   countries: NonEmptyList[Country],
54   @(ApiModelProperty @field)(dataType = "string", example = "fr", required = true)
55   languages: NonEmptyList[Language]
56 )
57 
58 object ModerationQuestionResponse {
59 
60   def apply(question: Question): ModerationQuestionResponse = ModerationQuestionResponse(
61     id = question.questionId,
62     slug = question.slug,
63     questions = question.questions,
64     shortTitles = question.shortTitles,
65     countries = question.countries,
66     languages = question.languages
67   )
68 
69   implicit val codec: Codec[ModerationQuestionResponse] = deriveCodec
70 }
71 
72 final case class MetasResponse(
73   title: Option[String],
74   description: Option[String],
75   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/picture.png")
76   picture: Option[String]
77 )
78 
79 object MetasResponse {
80   implicit val codec: Codec[MetasResponse] = deriveCodec
81 
82   def apply(metas: Metas, returnedLanguage: Language): MetasResponse =
83     MetasResponse(
84       title = metas.titles.map(_.getTranslationUnsafe(returnedLanguage)),
85       description = metas.descriptions.map(_.getTranslationUnsafe(returnedLanguage)),
86       picture = metas.picture
87     )
88 }
89 
90 final case class WordingResponse(
91   title: String,
92   question: String Refined NonEmpty,
93   description: Option[String],
94   metas: MetasResponse
95 )
96 
97 object WordingResponse {
98   implicit val codec: Codec[WordingResponse] = deriveCodec
99 }
100 
101 final case class IntroCardResponse(enabled: Boolean, title: Option[String], description: Option[String])
102 
103 object IntroCardResponse extends CirceFormatters {
104   implicit val codec: Codec[IntroCardResponse] = deriveCodec
105 }
106 
107 final case class PushProposalCardResponse(enabled: Boolean)
108 
109 object PushProposalCardResponse extends CirceFormatters {
110   implicit val codec: Codec[PushProposalCardResponse] = deriveCodec
111 }
112 
113 final case class FinalCardResponse(
114   enabled: Boolean,
115   withSharing: Boolean,
116   title: Option[String],
117   share: Option[String],
118   learnMoreTitle: Option[String],
119   learnMoreTextButton: Option[String],
120   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/link")
121   linkUrl: Option[String]
122 )
123 
124 object FinalCardResponse extends CirceFormatters {
125   implicit val codec: Codec[FinalCardResponse] = deriveCodec
126 }
127 
128 final case class SequenceCardsConfigurationResponse(
129   introCard: IntroCardResponse,
130   pushProposalCard: PushProposalCardResponse,
131   finalCard: FinalCardResponse
132 )
133 
134 object SequenceCardsConfigurationResponse extends CirceFormatters {
135   implicit val codec: Codec[SequenceCardsConfigurationResponse] = deriveCodec
136 
137   def apply(
138     sequenceCardConfiguration: SequenceCardsConfiguration,
139     returnedLanguage: Language
140   ): SequenceCardsConfigurationResponse = {
141     SequenceCardsConfigurationResponse(
142       introCard = IntroCardResponse(
143         enabled = sequenceCardConfiguration.introCard.enabled,
144         title = sequenceCardConfiguration.introCard.titles.flatMap(_.getTranslation(returnedLanguage)),
145         description = sequenceCardConfiguration.introCard.descriptions.flatMap(_.getTranslation(returnedLanguage))
146       ),
147       pushProposalCard = PushProposalCardResponse(enabled = sequenceCardConfiguration.pushProposalCard.enabled),
148       finalCard = FinalCardResponse(
149         enabled = sequenceCardConfiguration.finalCard.enabled,
150         withSharing = sequenceCardConfiguration.finalCard.sharingEnabled,
151         title = sequenceCardConfiguration.finalCard.titles.flatMap(_.getTranslation(returnedLanguage)),
152         share = sequenceCardConfiguration.finalCard.shareDescriptions.flatMap(_.getTranslation(returnedLanguage)),
153         learnMoreTitle = sequenceCardConfiguration.finalCard.learnMoreTitles.flatMap(_.getTranslation(returnedLanguage)),
154         learnMoreTextButton =
155           sequenceCardConfiguration.finalCard.learnMoreTextButtons.flatMap(_.getTranslation(returnedLanguage)),
156         linkUrl = sequenceCardConfiguration.finalCard.linkUrl
157       )
158     )
159   }
160 }
161 
162 final case class OrganisationPartnerResponse(organisationId: UserId, slug: String)
163 
164 object OrganisationPartnerResponse {
165   implicit val codec: Codec[OrganisationPartnerResponse] = deriveCodec
166 }
167 
168 final case class QuestionPartnerResponse(
169   name: String,
170   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/logo.png")
171   logo: Option[String],
172   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/link")
173   link: Option[String],
174   @(ApiModelProperty @field)(dataType = "string", example = "11111111-2222-3333-4444-555555555555")
175   organisation: Option[OrganisationPartnerResponse],
176   @(ApiModelProperty @field)(dataType = "string", required = true, allowableValues = PartnerKind.swaggerAllowableValues)
177   partnerKind: PartnerKind,
178   weight: Float
179 )
180 
181 object QuestionPartnerResponse extends CirceFormatters {
182   def apply(partner: Partner, organisation: Option[User]): QuestionPartnerResponse = QuestionPartnerResponse(
183     name = partner.name,
184     logo = partner.logo,
185     link = partner.link,
186     organisation = organisation.map { orga =>
187       OrganisationPartnerResponse(
188         organisationId = orga.userId,
189         slug = orga.organisationName.map(SlugHelper.apply).getOrElse("")
190       )
191     },
192     partnerKind = partner.partnerKind,
193     weight = partner.weight
194   )
195 
196   implicit val codec: Codec[QuestionPartnerResponse] = deriveCodec
197 }
198 
199 final case class OperationOfQuestionHighlightsResponse(
200   votesTarget: Int,
201   votesCount: Int,
202   participantsCount: Int,
203   proposalsCount: Int
204 )
205 
206 object OperationOfQuestionHighlightsResponse {
207   implicit val codec: Codec[OperationOfQuestionHighlightsResponse] = deriveCodec
208 }
209 
210 final case class TimelineResponse(
211   action: Option[TimelineElementResponse],
212   result: Option[TimelineElementResponse],
213   workshop: Option[TimelineElementResponse]
214 )
215 
216 object TimelineResponse extends CirceFormatters {
217   implicit val codec: Codec[TimelineResponse] = deriveCodec
218 }
219 
220 final case class TimelineElementResponse(date: LocalDate, dateText: String, description: String)
221 
222 object TimelineElementResponse extends CirceFormatters {
223   implicit val codec: Codec[TimelineElementResponse] = deriveCodec
224 }
225 
226 final case class QuestionDetailsResponse(
227   @(ApiModelProperty @field)(dataType = "string", example = "11111111-2222-3333-4444-555555555555", required = true)
228   questionId: QuestionId,
229   @(ApiModelProperty @field)(dataType = "string", example = "11111111-2222-3333-4444-555555555555", required = true)
230   operationId: OperationId,
231   preferredLanguage: Option[Language],
232   returnedLanguage: Language,
233   wording: WordingResponse,
234   question: String Refined NonEmpty,
235   shortTitle: Option[String Refined NonEmpty],
236   slug: String,
237   @(ApiModelProperty @field)(dataType = "list[string]", required = true)
238   countries: NonEmptyList[Country],
239   @(ApiModelProperty @field)(dataType = "string", example = "fr", required = true)
240   languages: NonEmptyList[Language],
241   startDate: ZonedDateTime,
242   endDate: ZonedDateTime,
243   @(ApiModelProperty @field)(dataType = "string", example = "11111111-2222-3333-4444-555555555555", required = true)
244   canPropose: Boolean,
245   proposalPrefix: String,
246   @(ApiModelProperty @field)(
247     dataType = "string",
248     required = true,
249     allowableValues = OperationKind.swaggerAllowableValues
250   )
251   operationKind: OperationKind,
252   sequenceConfig: SequenceCardsConfigurationResponse,
253   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/about")
254   aboutUrl: Option[String],
255   partners: Seq[QuestionPartnerResponse],
256   theme: QuestionThemeResponse,
257   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/consultation.png")
258   consultationImage: Option[String],
259   @(ApiModelProperty @field)(dataType = "string", example = "consultation alternative")
260   consultationImageAlt: Option[String Refined MaxSize[130]],
261   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/description.png")
262   descriptionImage: Option[String],
263   @(ApiModelProperty @field)(dataType = "string", example = "description alternative")
264   descriptionImageAlt: Option[String Refined MaxSize[130]],
265   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/cobranding-logo.png")
266   cobrandingLogo: Option[String],
267   @(ApiModelProperty @field)(dataType = "string", example = "cobranding logo alternative")
268   cobrandingLogoAlt: Option[String Refined MaxSize[130]],
269   displayResults: Boolean,
270   reportUrl: Option[String],
271   actionsUrl: Option[String],
272   @(ApiModelProperty @field)(dataType = "list[string]", required = true)
273   activeFeatures: Seq[FeatureSlug],
274   featured: Boolean,
275   highlights: OperationOfQuestionHighlightsResponse,
276   timeline: TimelineResponse,
277   controversyCount: Long,
278   topProposalCount: Long,
279   activeFeatureData: ActiveFeatureData,
280   @Deprecated hasDemographics: Boolean,
281   demographicsCardCount: Int,
282   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/results")
283   resultsLink: Option[String]
284 )
285 
286 object QuestionDetailsResponse extends CirceFormatters {
287   def apply(
288     question: Question,
289     operation: Operation,
290     operationOfQuestion: OperationOfQuestion,
291     partners: Seq[Partner],
292     organisations: Seq[User],
293     activeFeatures: Seq[FeatureSlug],
294     controversyCount: Long,
295     topProposalCount: Long,
296     activeFeatureData: ActiveFeatureData,
297     demographicsCardCount: Int,
298     preferredLanguage: Option[Language],
299     returnedLanguage: Language
300   ): QuestionDetailsResponse = QuestionDetailsResponse(
301     questionId = question.questionId,
302     operationId = operation.operationId,
303     preferredLanguage = preferredLanguage,
304     returnedLanguage = returnedLanguage,
305     wording = WordingResponse(
306       title = operationOfQuestion.operationTitles.getTranslationUnsafe(returnedLanguage),
307       question = question.questions.getTranslationUnsafe(returnedLanguage),
308       description = operationOfQuestion.descriptions.flatMap(_.getTranslation(returnedLanguage)),
309       metas = MetasResponse(operationOfQuestion.metas, returnedLanguage)
310     ),
311     question = question.questions.getTranslationUnsafe(returnedLanguage),
312     shortTitle = question.shortTitles.flatMap(_.getTranslation(returnedLanguage)),
313     slug = question.slug,
314     countries = question.countries,
315     languages = question.languages,
316     startDate = operationOfQuestion.startDate,
317     endDate = operationOfQuestion.endDate,
318     canPropose = operationOfQuestion.canPropose,
319     proposalPrefix = operationOfQuestion.proposalPrefixes.getTranslationUnsafe(returnedLanguage),
320     operationKind = operation.operationKind,
321     sequenceConfig =
322       SequenceCardsConfigurationResponse.apply(operationOfQuestion.sequenceCardsConfiguration, returnedLanguage),
323     aboutUrl = operationOfQuestion.aboutUrls.flatMap(_.getTranslation(returnedLanguage)),
324     partners =
325       partners.map(p => QuestionPartnerResponse(p, organisations.find(o => p.organisationId.contains(o.userId)))),
326     theme = QuestionThemeResponse.fromQuestionTheme(operationOfQuestion.theme),
327     consultationImage = operationOfQuestion.consultationImages.flatMap(_.getTranslation(returnedLanguage)),
328     consultationImageAlt = operationOfQuestion.consultationImageAlts.flatMap(_.getTranslation(returnedLanguage)),
329     descriptionImage = operationOfQuestion.descriptionImages.flatMap(_.getTranslation(returnedLanguage)),
330     descriptionImageAlt = operationOfQuestion.descriptionImageAlts.flatMap(_.getTranslation(returnedLanguage)),
331     cobrandingLogo = operationOfQuestion.cobrandingLogo,
332     cobrandingLogoAlt = operationOfQuestion.cobrandingLogoAlt,
333     displayResults = operationOfQuestion.resultsLink.isDefined,
334     reportUrl = operationOfQuestion.reportUrl,
335     actionsUrl = operationOfQuestion.actionsUrl,
336     activeFeatures = activeFeatures,
337     featured = operationOfQuestion.featured,
338     highlights = OperationOfQuestionHighlightsResponse(
339       votesTarget = operationOfQuestion.votesTarget,
340       votesCount = operationOfQuestion.votesCount,
341       participantsCount = operationOfQuestion.participantsCount,
342       proposalsCount = operationOfQuestion.proposalsCount
343     ),
344     timeline = TimelineResponse(
345       action = operationOfQuestion.timeline.action.map(
346         action =>
347           TimelineElementResponse(
348             action.date,
349             action.dateTexts.getTranslation(returnedLanguage).fold("")(_.value),
350             action.descriptions.getTranslation(returnedLanguage).fold("")(_.value)
351           )
352       ),
353       result = operationOfQuestion.timeline.result.map(
354         result =>
355           TimelineElementResponse(
356             result.date,
357             result.dateTexts.getTranslation(returnedLanguage).fold("")(_.value),
358             result.descriptions.getTranslation(returnedLanguage).fold("")(_.value)
359           )
360       ),
361       workshop = operationOfQuestion.timeline.workshop.map(
362         workshop =>
363           TimelineElementResponse(
364             workshop.date,
365             workshop.dateTexts.getTranslation(returnedLanguage).fold("")(_.value),
366             workshop.descriptions.getTranslation(returnedLanguage).fold("")(_.value)
367           )
368       )
369     ),
370     controversyCount = controversyCount,
371     topProposalCount = topProposalCount,
372     activeFeatureData = activeFeatureData,
373     hasDemographics = demographicsCardCount > 0,
374     demographicsCardCount = demographicsCardCount,
375     resultsLink = operationOfQuestion.resultsLink.map(Show[ResultsLink].show)
376   )
377 
378   implicit val codec: Codec[QuestionDetailsResponse] = deriveCodec
379 }
380 
381 final case class QuestionOfOperationResponse(
382   @(ApiModelProperty @field)(dataType = "string", example = "11111111-2222-3333-4444-555555555555", required = true)
383   questionId: QuestionId,
384   questionSlug: String,
385   preferredLanguage: Option[Language],
386   returnedLanguage: Language,
387   question: String Refined NonEmpty,
388   shortTitle: Option[String Refined NonEmpty],
389   operationTitle: String,
390   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/consultation.png")
391   consultationImage: Option[String],
392   @(ApiModelProperty @field)(dataType = "string", example = "consultation image alternative")
393   consultationImageAlt: Option[String Refined MaxSize[130]],
394   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/description.png")
395   descriptionImage: Option[String],
396   @(ApiModelProperty @field)(dataType = "string", example = "description image alternative")
397   descriptionImageAlt: Option[String Refined MaxSize[130]],
398   @(ApiModelProperty @field)(dataType = "list[string]", required = true)
399   countries: NonEmptyList[Country],
400   @(ApiModelProperty @field)(dataType = "string", example = "fr", required = true)
401   languages: NonEmptyList[Language],
402   startDate: ZonedDateTime,
403   endDate: ZonedDateTime,
404   theme: QuestionThemeResponse,
405   displayResults: Boolean,
406   resultsLink: Option[ResultsLinkResponse],
407   @(ApiModelProperty @field)(dataType = "string", example = "https://example.com/about")
408   aboutUrl: Option[String],
409   actions: Option[String],
410   featured: Boolean,
411   @Deprecated participantsCount: Int,
412   proposalsCount: Int,
413   votesCount: Int
414 )
415 
416 object QuestionOfOperationResponse extends CirceFormatters {
417   def apply(
418     indexedOperationOfQuestion: IndexedOperationOfQuestion,
419     preferredLanguage: Option[Language]
420   ): QuestionOfOperationResponse = {
421     val returnedLanguage = preferredLanguage.fold(indexedOperationOfQuestion.defaultLanguage)(
422       lang =>
423         indexedOperationOfQuestion.languages
424           .find(language => language.value == lang.value)
425           .getOrElse(indexedOperationOfQuestion.defaultLanguage)
426     )
427     QuestionOfOperationResponse(
428       questionId = indexedOperationOfQuestion.questionId,
429       questionSlug = indexedOperationOfQuestion.slug,
430       preferredLanguage = preferredLanguage,
431       returnedLanguage = returnedLanguage,
432       question = indexedOperationOfQuestion.questions.getTranslationUnsafe(returnedLanguage),
433       shortTitle = indexedOperationOfQuestion.questionShortTitles.flatMap(_.getTranslation(returnedLanguage)),
434       operationTitle = indexedOperationOfQuestion.operationTitles.getTranslationUnsafe(returnedLanguage),
435       consultationImage = indexedOperationOfQuestion.consultationImages.flatMap(_.getTranslation(returnedLanguage)),
436       consultationImageAlt =
437         indexedOperationOfQuestion.consultationImageAlts.flatMap(_.getTranslation(returnedLanguage)),
438       descriptionImage = indexedOperationOfQuestion.descriptionImages.flatMap(_.getTranslation(returnedLanguage)),
439       descriptionImageAlt = indexedOperationOfQuestion.descriptionImageAlts.flatMap(_.getTranslation(returnedLanguage)),
440       countries = indexedOperationOfQuestion.countries,
441       languages = indexedOperationOfQuestion.languages,
442       startDate = indexedOperationOfQuestion.startDate,
443       endDate = indexedOperationOfQuestion.endDate,
444       theme = QuestionThemeResponse.fromQuestionTheme(indexedOperationOfQuestion.theme),
445       displayResults = indexedOperationOfQuestion.resultsLink.isDefined,
446       resultsLink = indexedOperationOfQuestion.resultsLink
447         .flatMap(ResultsLink.parse)
448         .map(ResultsLinkResponse.apply),
449       aboutUrl = indexedOperationOfQuestion.aboutUrls.flatMap(_.getTranslation(returnedLanguage)),
450       actions = indexedOperationOfQuestion.actions,
451       featured = indexedOperationOfQuestion.featured,
452       participantsCount = indexedOperationOfQuestion.participantsCount,
453       proposalsCount = indexedOperationOfQuestion.proposalsCount,
454       votesCount = indexedOperationOfQuestion.votesCount
455     )
456   }
457 
458   implicit val codec: Codec[QuestionOfOperationResponse] = deriveCodec[QuestionOfOperationResponse]
459 }
460 
461 final case class QuestionThemeResponse(
462   @(ApiModelProperty @field)(dataType = "string", example = "#214284", required = true) gradientStart: String,
463   @(ApiModelProperty @field)(dataType = "string", example = "#428421", required = true) gradientEnd: String,
464   @(ApiModelProperty @field)(dataType = "string", example = "#842142", required = true) color: String,
465   @(ApiModelProperty @field)(dataType = "string", example = "#ff0000", required = true) fontColor: String
466 )
467 
468 object QuestionThemeResponse {
469   def fromQuestionTheme(theme: QuestionTheme): QuestionThemeResponse = {
470     QuestionThemeResponse(
471       gradientStart = theme.color,
472       gradientEnd = theme.color,
473       color = theme.color,
474       fontColor = theme.fontColor
475     )
476   }
477 
478   implicit val codec: Codec[QuestionThemeResponse] = deriveCodec
479 }
480 
481 final case class ActiveFeatureData(topProposal: Option[ProposalResponse])
482 
483 object ActiveFeatureData {
484   implicit val codec: Codec[ActiveFeatureData] = deriveCodec
485 }
Line Stmt Id Pos Tree Symbol Tests Code
60 29986 2322 - 2556 Apply org.make.api.question.ModerationQuestionResponse.apply ModerationQuestionResponse.apply(question.questionId, question.slug, question.questions, question.shortTitles, question.countries, question.languages)
61 29694 2359 - 2378 Select org.make.core.question.Question.questionId question.questionId
62 28864 2391 - 2404 Select org.make.core.question.Question.slug question.slug
63 28506 2422 - 2440 Select org.make.core.question.Question.questions question.questions
64 29799 2460 - 2480 Select org.make.core.question.Question.shortTitles question.shortTitles
65 28953 2498 - 2516 Select org.make.core.question.Question.countries question.countries
66 30380 2534 - 2552 Select org.make.core.question.Question.languages question.languages
69 29198 2616 - 2627 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.ModerationQuestionResponse]({ val inst$macro$28: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.ModerationQuestionResponse] = { final class anon$lazy$macro$27 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$27 = { anon$lazy$macro$27.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.ModerationQuestionResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.ModerationQuestionResponse, shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.ModerationQuestionResponse, (Symbol @@ String("id")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("questions")) :: (Symbol @@ String("shortTitles")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: shapeless.HNil, org.make.core.question.QuestionId :: String :: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.ModerationQuestionResponse, (Symbol @@ String("id")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("questions")) :: (Symbol @@ String("shortTitles")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: shapeless.HNil](::.apply[Symbol @@ String("id"), (Symbol @@ String("slug")) :: (Symbol @@ String("questions")) :: (Symbol @@ String("shortTitles")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: shapeless.HNil.type](scala.Symbol.apply("id").asInstanceOf[Symbol @@ String("id")], ::.apply[Symbol @@ String("slug"), (Symbol @@ String("questions")) :: (Symbol @@ String("shortTitles")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: shapeless.HNil.type](scala.Symbol.apply("slug").asInstanceOf[Symbol @@ String("slug")], ::.apply[Symbol @@ String("questions"), (Symbol @@ String("shortTitles")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: shapeless.HNil.type](scala.Symbol.apply("questions").asInstanceOf[Symbol @@ String("questions")], ::.apply[Symbol @@ String("shortTitles"), (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: shapeless.HNil.type](scala.Symbol.apply("shortTitles").asInstanceOf[Symbol @@ String("shortTitles")], ::.apply[Symbol @@ String("countries"), (Symbol @@ String("languages")) :: shapeless.HNil.type](scala.Symbol.apply("countries").asInstanceOf[Symbol @@ String("countries")], ::.apply[Symbol @@ String("languages"), shapeless.HNil.type](scala.Symbol.apply("languages").asInstanceOf[Symbol @@ String("languages")], HNil))))))), Generic.instance[org.make.api.question.ModerationQuestionResponse, org.make.core.question.QuestionId :: String :: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil](((x0$3: org.make.api.question.ModerationQuestionResponse) => x0$3 match { case (id: org.make.core.question.QuestionId, slug: String, questions: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], shortTitles: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]], countries: cats.data.NonEmptyList[org.make.core.reference.Country], languages: cats.data.NonEmptyList[org.make.core.reference.Language]): org.make.api.question.ModerationQuestionResponse((id$macro$20 @ _), (slug$macro$21 @ _), (questions$macro$22 @ _), (shortTitles$macro$23 @ _), (countries$macro$24 @ _), (languages$macro$25 @ _)) => ::.apply[org.make.core.question.QuestionId, String :: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil.type](id$macro$20, ::.apply[String, org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil.type](slug$macro$21, ::.apply[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil.type](questions$macro$22, ::.apply[Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]], cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil.type](shortTitles$macro$23, ::.apply[cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil.type](countries$macro$24, ::.apply[cats.data.NonEmptyList[org.make.core.reference.Language], shapeless.HNil.type](languages$macro$25, HNil)))))).asInstanceOf[org.make.core.question.QuestionId :: String :: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil] }), ((x0$4: org.make.core.question.QuestionId :: String :: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil) => x0$4 match { case (head: org.make.core.question.QuestionId, tail: String :: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil): org.make.core.question.QuestionId :: String :: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil((id$macro$14 @ _), (head: String, tail: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil): String :: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil((slug$macro$15 @ _), (head: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], tail: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil): org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil((questions$macro$16 @ _), (head: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]], tail: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil): Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil((shortTitles$macro$17 @ _), (head: cats.data.NonEmptyList[org.make.core.reference.Country], tail: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil): cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil((countries$macro$18 @ _), (head: cats.data.NonEmptyList[org.make.core.reference.Language], tail: shapeless.HNil): cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil((languages$macro$19 @ _), HNil)))))) => question.this.ModerationQuestionResponse.apply(id$macro$14, slug$macro$15, questions$macro$16, shortTitles$macro$17, countries$macro$18, languages$macro$19) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("id"), org.make.core.question.QuestionId, (Symbol @@ String("slug")) :: (Symbol @@ String("questions")) :: (Symbol @@ String("shortTitles")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: shapeless.HNil, String :: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("slug"), String, (Symbol @@ String("questions")) :: (Symbol @@ String("shortTitles")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: shapeless.HNil, org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("questions"), org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], (Symbol @@ String("shortTitles")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: shapeless.HNil, Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("shortTitles"), Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]], (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: shapeless.HNil, cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("countries"), cats.data.NonEmptyList[org.make.core.reference.Country], (Symbol @@ String("languages")) :: shapeless.HNil, cats.data.NonEmptyList[org.make.core.reference.Language] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("languages"), cats.data.NonEmptyList[org.make.core.reference.Language], shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("languages")]](scala.Symbol.apply("languages").asInstanceOf[Symbol @@ String("languages")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("languages")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("countries")]](scala.Symbol.apply("countries").asInstanceOf[Symbol @@ String("countries")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("countries")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("shortTitles")]](scala.Symbol.apply("shortTitles").asInstanceOf[Symbol @@ String("shortTitles")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("shortTitles")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("questions")]](scala.Symbol.apply("questions").asInstanceOf[Symbol @@ String("questions")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("questions")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("slug")]](scala.Symbol.apply("slug").asInstanceOf[Symbol @@ String("slug")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("slug")]])), 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.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$27.this.inst$macro$26)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.ModerationQuestionResponse]]; <stable> <accessor> lazy val inst$macro$26: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForid: io.circe.Decoder[org.make.core.question.QuestionId] = question.this.QuestionId.QuestionIdDecoder; private[this] val circeGenericDecoderForslug: io.circe.Decoder[String] = circe.this.Decoder.decodeString; private[this] val circeGenericDecoderForquestions: io.circe.Decoder[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] = technical.this.Multilingual.circeDecoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](io.circe.refined.`package`.refinedDecoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Decoder.decodeString, boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s)))), api.this.RefType.refinedRefType)); private[this] val circeGenericDecoderForshortTitles: io.circe.Decoder[Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] = circe.this.Decoder.decodeOption[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]](technical.this.Multilingual.circeDecoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](io.circe.refined.`package`.refinedDecoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Decoder.decodeString, boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s)))), api.this.RefType.refinedRefType))); private[this] val circeGenericDecoderForcountries: io.circe.Decoder[cats.data.NonEmptyList[org.make.core.reference.Country]] = circe.this.Decoder.decodeNonEmptyList[org.make.core.reference.Country](reference.this.Country.countryDecoder); private[this] val circeGenericDecoderForlanguages: io.circe.Decoder[cats.data.NonEmptyList[org.make.core.reference.Language]] = circe.this.Decoder.decodeNonEmptyList[org.make.core.reference.Language](reference.this.Language.LanguageDecoder); private[this] val circeGenericEncoderForid: io.circe.Encoder[org.make.core.question.QuestionId] = question.this.QuestionId.QuestionIdEncoder; private[this] val circeGenericEncoderForslug: io.circe.Encoder[String] = circe.this.Encoder.encodeString; private[this] val circeGenericEncoderForquestions: io.circe.Encoder[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] = technical.this.Multilingual.circeEncoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](io.circe.refined.`package`.refinedEncoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Encoder.encodeString, api.this.RefType.refinedRefType)); private[this] val circeGenericEncoderForshortTitles: io.circe.Encoder[Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] = circe.this.Encoder.encodeOption[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]](technical.this.Multilingual.circeEncoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](io.circe.refined.`package`.refinedEncoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Encoder.encodeString, api.this.RefType.refinedRefType))); private[this] val circeGenericEncoderForcountries: io.circe.Encoder.AsArray[cats.data.NonEmptyList[org.make.core.reference.Country]] = circe.this.Encoder.encodeNonEmptyList[org.make.core.reference.Country](reference.this.Country.countryEncoder); private[this] val circeGenericEncoderForlanguages: io.circe.Encoder.AsArray[cats.data.NonEmptyList[org.make.core.reference.Language]] = circe.this.Encoder.encodeNonEmptyList[org.make.core.reference.Language](reference.this.Language.LanguageEncoder); final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId], tail: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForid @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("slug"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForslug @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]], tail: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForquestions @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]], tail: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForshortTitles @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]], tail: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForcountries @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForlanguages @ _), 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]("slug", $anon.this.circeGenericEncoderForslug.apply(circeGenericHListBindingForslug)), scala.Tuple2.apply[String, io.circe.Json]("questions", $anon.this.circeGenericEncoderForquestions.apply(circeGenericHListBindingForquestions)), scala.Tuple2.apply[String, io.circe.Json]("shortTitles", $anon.this.circeGenericEncoderForshortTitles.apply(circeGenericHListBindingForshortTitles)), scala.Tuple2.apply[String, io.circe.Json]("countries", $anon.this.circeGenericEncoderForcountries.apply(circeGenericHListBindingForcountries)), scala.Tuple2.apply[String, io.circe.Json]("languages", $anon.this.circeGenericEncoderForlanguages.apply(circeGenericHListBindingForlanguages)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("id"), org.make.core.question.QuestionId, shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForid.tryDecode(c.downField("id")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("slug"), String, shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForslug.tryDecode(c.downField("slug")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("questions"), org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestions.tryDecode(c.downField("questions")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("shortTitles"), Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]], shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForshortTitles.tryDecode(c.downField("shortTitles")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("countries"), cats.data.NonEmptyList[org.make.core.reference.Country], shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcountries.tryDecode(c.downField("countries")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("languages"), cats.data.NonEmptyList[org.make.core.reference.Language], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlanguages.tryDecode(c.downField("languages")), 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); final override def decodeAccumulating(c: io.circe.HCursor): io.circe.Decoder.AccumulatingResult[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("id"), org.make.core.question.QuestionId, shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForid.tryDecodeAccumulating(c.downField("id")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("slug"), String, shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForslug.tryDecodeAccumulating(c.downField("slug")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("questions"), org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestions.tryDecodeAccumulating(c.downField("questions")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("shortTitles"), Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]], shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForshortTitles.tryDecodeAccumulating(c.downField("shortTitles")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("countries"), cats.data.NonEmptyList[org.make.core.reference.Country], shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcountries.tryDecodeAccumulating(c.downField("countries")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("languages"), cats.data.NonEmptyList[org.make.core.reference.Language], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlanguages.tryDecodeAccumulating(c.downField("languages")), 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) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("id"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("questions"),org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitles"),Option[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$27().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.ModerationQuestionResponse]](inst$macro$28) })
80 28389 2911 - 2922 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.MetasResponse]({ val inst$macro$16: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.MetasResponse] = { final class anon$lazy$macro$15 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$15 = { anon$lazy$macro$15.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.MetasResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.MetasResponse, shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.MetasResponse, (Symbol @@ String("title")) :: (Symbol @@ String("description")) :: (Symbol @@ String("picture")) :: shapeless.HNil, Option[String] :: Option[String] :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.MetasResponse, (Symbol @@ String("title")) :: (Symbol @@ String("description")) :: (Symbol @@ String("picture")) :: shapeless.HNil](::.apply[Symbol @@ String("title"), (Symbol @@ String("description")) :: (Symbol @@ String("picture")) :: shapeless.HNil.type](scala.Symbol.apply("title").asInstanceOf[Symbol @@ String("title")], ::.apply[Symbol @@ String("description"), (Symbol @@ String("picture")) :: shapeless.HNil.type](scala.Symbol.apply("description").asInstanceOf[Symbol @@ String("description")], ::.apply[Symbol @@ String("picture"), shapeless.HNil.type](scala.Symbol.apply("picture").asInstanceOf[Symbol @@ String("picture")], HNil)))), Generic.instance[org.make.api.question.MetasResponse, Option[String] :: Option[String] :: Option[String] :: shapeless.HNil](((x0$3: org.make.api.question.MetasResponse) => x0$3 match { case (title: Option[String], description: Option[String], picture: Option[String]): org.make.api.question.MetasResponse((title$macro$11 @ _), (description$macro$12 @ _), (picture$macro$13 @ _)) => ::.apply[Option[String], Option[String] :: Option[String] :: shapeless.HNil.type](title$macro$11, ::.apply[Option[String], Option[String] :: shapeless.HNil.type](description$macro$12, ::.apply[Option[String], shapeless.HNil.type](picture$macro$13, HNil))).asInstanceOf[Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] }), ((x0$4: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil) => x0$4 match { case (head: Option[String], tail: Option[String] :: Option[String] :: shapeless.HNil): Option[String] :: Option[String] :: Option[String] :: shapeless.HNil((title$macro$8 @ _), (head: Option[String], tail: Option[String] :: shapeless.HNil): Option[String] :: Option[String] :: shapeless.HNil((description$macro$9 @ _), (head: Option[String], tail: shapeless.HNil): Option[String] :: shapeless.HNil((picture$macro$10 @ _), HNil))) => question.this.MetasResponse.apply(title$macro$8, description$macro$9, picture$macro$10) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("title"), Option[String], (Symbol @@ String("description")) :: (Symbol @@ String("picture")) :: shapeless.HNil, Option[String] :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("description"), Option[String], (Symbol @@ String("picture")) :: shapeless.HNil, Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("picture"), Option[String], shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("picture")]](scala.Symbol.apply("picture").asInstanceOf[Symbol @@ String("picture")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("picture")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("description")]](scala.Symbol.apply("description").asInstanceOf[Symbol @@ String("description")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("description")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("title")]](scala.Symbol.apply("title").asInstanceOf[Symbol @@ String("title")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("title")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$15.this.inst$macro$14)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.MetasResponse]]; <stable> <accessor> lazy val inst$macro$14: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForpicture: io.circe.Decoder[Option[String]] = circe.this.Decoder.decodeOption[String](circe.this.Decoder.decodeString); private[this] val circeGenericEncoderForpicture: io.circe.Encoder[Option[String]] = circe.this.Encoder.encodeOption[String](circe.this.Encoder.encodeString); final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFortitle @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordescription @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForpicture @ _), shapeless.HNil))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("title", $anon.this.circeGenericEncoderForpicture.apply(circeGenericHListBindingFortitle)), scala.Tuple2.apply[String, io.circe.Json]("description", $anon.this.circeGenericEncoderForpicture.apply(circeGenericHListBindingFordescription)), scala.Tuple2.apply[String, io.circe.Json]("picture", $anon.this.circeGenericEncoderForpicture.apply(circeGenericHListBindingForpicture)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("title"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpicture.tryDecode(c.downField("title")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("description"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpicture.tryDecode(c.downField("description")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("picture"), Option[String], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpicture.tryDecode(c.downField("picture")), ReprDecoder.hnilResult)(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("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("title"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpicture.tryDecodeAccumulating(c.downField("title")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("description"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpicture.tryDecodeAccumulating(c.downField("description")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("picture"), Option[String], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpicture.tryDecodeAccumulating(c.downField("picture")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("picture"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$15().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.MetasResponse]](inst$macro$16) })
83 30336 2999 - 3209 Apply org.make.api.question.MetasResponse.apply MetasResponse.apply(metas.titles.map[String](((x$1: org.make.core.technical.Multilingual[String]) => x$1.getTranslationUnsafe(returnedLanguage))), metas.descriptions.map[String](((x$2: org.make.core.technical.Multilingual[String]) => x$2.getTranslationUnsafe(returnedLanguage))), metas.picture)
84 28920 3028 - 3086 Apply scala.Option.map metas.titles.map[String](((x$1: org.make.core.technical.Multilingual[String]) => x$1.getTranslationUnsafe(returnedLanguage)))
84 29649 3045 - 3085 Apply org.make.core.technical.Multilingual.getTranslationUnsafe x$1.getTranslationUnsafe(returnedLanguage)
85 29896 3108 - 3172 Apply scala.Option.map metas.descriptions.map[String](((x$2: org.make.core.technical.Multilingual[String]) => x$2.getTranslationUnsafe(returnedLanguage)))
85 28463 3131 - 3171 Apply org.make.core.technical.Multilingual.getTranslationUnsafe x$2.getTranslationUnsafe(returnedLanguage)
86 28956 3190 - 3203 Select org.make.core.operation.Metas.picture metas.picture
98 29990 3430 - 3441 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.WordingResponse]({ val inst$macro$20: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.WordingResponse] = { final class anon$lazy$macro$19 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$19 = { anon$lazy$macro$19.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.WordingResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.WordingResponse, shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.WordingResponse, (Symbol @@ String("title")) :: (Symbol @@ String("question")) :: (Symbol @@ String("description")) :: (Symbol @@ String("metas")) :: shapeless.HNil, String :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.WordingResponse, (Symbol @@ String("title")) :: (Symbol @@ String("question")) :: (Symbol @@ String("description")) :: (Symbol @@ String("metas")) :: shapeless.HNil](::.apply[Symbol @@ String("title"), (Symbol @@ String("question")) :: (Symbol @@ String("description")) :: (Symbol @@ String("metas")) :: shapeless.HNil.type](scala.Symbol.apply("title").asInstanceOf[Symbol @@ String("title")], ::.apply[Symbol @@ String("question"), (Symbol @@ String("description")) :: (Symbol @@ String("metas")) :: shapeless.HNil.type](scala.Symbol.apply("question").asInstanceOf[Symbol @@ String("question")], ::.apply[Symbol @@ String("description"), (Symbol @@ String("metas")) :: shapeless.HNil.type](scala.Symbol.apply("description").asInstanceOf[Symbol @@ String("description")], ::.apply[Symbol @@ String("metas"), shapeless.HNil.type](scala.Symbol.apply("metas").asInstanceOf[Symbol @@ String("metas")], HNil))))), Generic.instance[org.make.api.question.WordingResponse, String :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil](((x0$3: org.make.api.question.WordingResponse) => x0$3 match { case (title: String, question: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], description: Option[String], metas: org.make.api.question.MetasResponse): org.make.api.question.WordingResponse((title$macro$14 @ _), (question$macro$15 @ _), (description$macro$16 @ _), (metas$macro$17 @ _)) => ::.apply[String, eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil.type](title$macro$14, ::.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil.type](question$macro$15, ::.apply[Option[String], org.make.api.question.MetasResponse :: shapeless.HNil.type](description$macro$16, ::.apply[org.make.api.question.MetasResponse, shapeless.HNil.type](metas$macro$17, HNil)))).asInstanceOf[String :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil] }), ((x0$4: String :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil) => x0$4 match { case (head: String, tail: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil): String :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil((title$macro$10 @ _), (head: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], tail: Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil((question$macro$11 @ _), (head: Option[String], tail: org.make.api.question.MetasResponse :: shapeless.HNil): Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil((description$macro$12 @ _), (head: org.make.api.question.MetasResponse, tail: shapeless.HNil): org.make.api.question.MetasResponse :: shapeless.HNil((metas$macro$13 @ _), HNil)))) => question.this.WordingResponse.apply(title$macro$10, question$macro$11, description$macro$12, metas$macro$13) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("title"), String, (Symbol @@ String("question")) :: (Symbol @@ String("description")) :: (Symbol @@ String("metas")) :: shapeless.HNil, eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("question"), eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], (Symbol @@ String("description")) :: (Symbol @@ String("metas")) :: shapeless.HNil, Option[String] :: org.make.api.question.MetasResponse :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("description"), Option[String], (Symbol @@ String("metas")) :: shapeless.HNil, org.make.api.question.MetasResponse :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("metas"), org.make.api.question.MetasResponse, shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("metas")]](scala.Symbol.apply("metas").asInstanceOf[Symbol @@ String("metas")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("metas")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("description")]](scala.Symbol.apply("description").asInstanceOf[Symbol @@ String("description")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("description")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("question")]](scala.Symbol.apply("question").asInstanceOf[Symbol @@ String("question")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("question")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("title")]](scala.Symbol.apply("title").asInstanceOf[Symbol @@ String("title")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("title")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$19.this.inst$macro$18)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.WordingResponse]]; <stable> <accessor> lazy val inst$macro$18: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderFortitle: io.circe.Decoder[String] = circe.this.Decoder.decodeString; private[this] val circeGenericDecoderForquestion: io.circe.Decoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] = io.circe.refined.`package`.refinedDecoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Decoder.decodeString, boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s)))), api.this.RefType.refinedRefType); private[this] val circeGenericDecoderFordescription: io.circe.Decoder[Option[String]] = circe.this.Decoder.decodeOption[String](circe.this.Decoder.decodeString); private[this] val circeGenericDecoderFormetas: io.circe.Codec[org.make.api.question.MetasResponse] = question.this.MetasResponse.codec; private[this] val circeGenericEncoderFortitle: io.circe.Encoder[String] = circe.this.Encoder.encodeString; private[this] val circeGenericEncoderForquestion: io.circe.Encoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] = io.circe.refined.`package`.refinedEncoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Encoder.encodeString, api.this.RefType.refinedRefType); private[this] val circeGenericEncoderFordescription: io.circe.Encoder[Option[String]] = circe.this.Encoder.encodeOption[String](circe.this.Encoder.encodeString); private[this] val circeGenericEncoderFormetas: io.circe.Codec[org.make.api.question.MetasResponse] = question.this.MetasResponse.codec; final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("title"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFortitle @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], tail: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForquestion @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordescription @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFormetas @ _), shapeless.HNil)))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("title", $anon.this.circeGenericEncoderFortitle.apply(circeGenericHListBindingFortitle)), scala.Tuple2.apply[String, io.circe.Json]("question", $anon.this.circeGenericEncoderForquestion.apply(circeGenericHListBindingForquestion)), scala.Tuple2.apply[String, io.circe.Json]("description", $anon.this.circeGenericEncoderFordescription.apply(circeGenericHListBindingFordescription)), scala.Tuple2.apply[String, io.circe.Json]("metas", $anon.this.circeGenericEncoderFormetas.apply(circeGenericHListBindingFormetas)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("title"), String, shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortitle.tryDecode(c.downField("title")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("question"), eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestion.tryDecode(c.downField("question")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("description"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescription.tryDecode(c.downField("description")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("metas"), org.make.api.question.MetasResponse, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFormetas.tryDecode(c.downField("metas")), ReprDecoder.hnilResult)(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("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("title"), String, shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortitle.tryDecodeAccumulating(c.downField("title")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("question"), eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestion.tryDecodeAccumulating(c.downField("question")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("description"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescription.tryDecodeAccumulating(c.downField("description")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("metas"), org.make.api.question.MetasResponse, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFormetas.tryDecodeAccumulating(c.downField("metas")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("title"),String] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("metas"),org.make.api.question.MetasResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$19().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.WordingResponse]](inst$macro$20) })
104 29158 3651 - 3662 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.IntroCardResponse]({ val inst$macro$16: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.IntroCardResponse] = { final class anon$lazy$macro$15 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$15 = { anon$lazy$macro$15.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.IntroCardResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.IntroCardResponse, shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.IntroCardResponse, (Symbol @@ String("enabled")) :: (Symbol @@ String("title")) :: (Symbol @@ String("description")) :: shapeless.HNil, Boolean :: Option[String] :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.IntroCardResponse, (Symbol @@ String("enabled")) :: (Symbol @@ String("title")) :: (Symbol @@ String("description")) :: shapeless.HNil](::.apply[Symbol @@ String("enabled"), (Symbol @@ String("title")) :: (Symbol @@ String("description")) :: shapeless.HNil.type](scala.Symbol.apply("enabled").asInstanceOf[Symbol @@ String("enabled")], ::.apply[Symbol @@ String("title"), (Symbol @@ String("description")) :: shapeless.HNil.type](scala.Symbol.apply("title").asInstanceOf[Symbol @@ String("title")], ::.apply[Symbol @@ String("description"), shapeless.HNil.type](scala.Symbol.apply("description").asInstanceOf[Symbol @@ String("description")], HNil)))), Generic.instance[org.make.api.question.IntroCardResponse, Boolean :: Option[String] :: Option[String] :: shapeless.HNil](((x0$3: org.make.api.question.IntroCardResponse) => x0$3 match { case (enabled: Boolean, title: Option[String], description: Option[String]): org.make.api.question.IntroCardResponse((enabled$macro$11 @ _), (title$macro$12 @ _), (description$macro$13 @ _)) => ::.apply[Boolean, Option[String] :: Option[String] :: shapeless.HNil.type](enabled$macro$11, ::.apply[Option[String], Option[String] :: shapeless.HNil.type](title$macro$12, ::.apply[Option[String], shapeless.HNil.type](description$macro$13, HNil))).asInstanceOf[Boolean :: Option[String] :: Option[String] :: shapeless.HNil] }), ((x0$4: Boolean :: Option[String] :: Option[String] :: shapeless.HNil) => x0$4 match { case (head: Boolean, tail: Option[String] :: Option[String] :: shapeless.HNil): Boolean :: Option[String] :: Option[String] :: shapeless.HNil((enabled$macro$8 @ _), (head: Option[String], tail: Option[String] :: shapeless.HNil): Option[String] :: Option[String] :: shapeless.HNil((title$macro$9 @ _), (head: Option[String], tail: shapeless.HNil): Option[String] :: shapeless.HNil((description$macro$10 @ _), HNil))) => question.this.IntroCardResponse.apply(enabled$macro$8, title$macro$9, description$macro$10) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("enabled"), Boolean, (Symbol @@ String("title")) :: (Symbol @@ String("description")) :: shapeless.HNil, Option[String] :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("title"), Option[String], (Symbol @@ String("description")) :: shapeless.HNil, Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("description"), Option[String], shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("description")]](scala.Symbol.apply("description").asInstanceOf[Symbol @@ String("description")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("description")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("title")]](scala.Symbol.apply("title").asInstanceOf[Symbol @@ String("title")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("title")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("enabled")]](scala.Symbol.apply("enabled").asInstanceOf[Symbol @@ String("enabled")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("enabled")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$15.this.inst$macro$14)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.IntroCardResponse]]; <stable> <accessor> lazy val inst$macro$14: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForenabled: io.circe.Decoder[Boolean] = circe.this.Decoder.decodeBoolean; private[this] val circeGenericDecoderFordescription: io.circe.Decoder[Option[String]] = circe.this.Decoder.decodeOption[String](circe.this.Decoder.decodeString); private[this] val circeGenericEncoderForenabled: io.circe.Encoder[Boolean] = circe.this.Encoder.encodeBoolean; private[this] val circeGenericEncoderFordescription: io.circe.Encoder[Option[String]] = circe.this.Encoder.encodeOption[String](circe.this.Encoder.encodeString); final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean], tail: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForenabled @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFortitle @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordescription @ _), shapeless.HNil))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("enabled", $anon.this.circeGenericEncoderForenabled.apply(circeGenericHListBindingForenabled)), scala.Tuple2.apply[String, io.circe.Json]("title", $anon.this.circeGenericEncoderFordescription.apply(circeGenericHListBindingFortitle)), scala.Tuple2.apply[String, io.circe.Json]("description", $anon.this.circeGenericEncoderFordescription.apply(circeGenericHListBindingFordescription)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("enabled"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForenabled.tryDecode(c.downField("enabled")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("title"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescription.tryDecode(c.downField("title")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("description"), Option[String], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescription.tryDecode(c.downField("description")), ReprDecoder.hnilResult)(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("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("enabled"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForenabled.tryDecodeAccumulating(c.downField("enabled")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("title"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescription.tryDecodeAccumulating(c.downField("title")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("description"), Option[String], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescription.tryDecodeAccumulating(c.downField("description")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("description"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$15().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.IntroCardResponse]](inst$macro$16) })
110 28320 3841 - 3852 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.PushProposalCardResponse]({ val inst$macro$8: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.PushProposalCardResponse] = { final class anon$lazy$macro$7 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$7 = { anon$lazy$macro$7.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.PushProposalCardResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.PushProposalCardResponse, shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.PushProposalCardResponse, (Symbol @@ String("enabled")) :: shapeless.HNil, Boolean :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.PushProposalCardResponse, (Symbol @@ String("enabled")) :: shapeless.HNil](::.apply[Symbol @@ String("enabled"), shapeless.HNil.type](scala.Symbol.apply("enabled").asInstanceOf[Symbol @@ String("enabled")], HNil)), Generic.instance[org.make.api.question.PushProposalCardResponse, Boolean :: shapeless.HNil](((x0$3: org.make.api.question.PushProposalCardResponse) => x0$3 match { case (enabled: Boolean): org.make.api.question.PushProposalCardResponse((enabled$macro$5 @ _)) => ::.apply[Boolean, shapeless.HNil.type](enabled$macro$5, HNil).asInstanceOf[Boolean :: shapeless.HNil] }), ((x0$4: Boolean :: shapeless.HNil) => x0$4 match { case (head: Boolean, tail: shapeless.HNil): Boolean :: shapeless.HNil((enabled$macro$4 @ _), HNil) => question.this.PushProposalCardResponse.apply(enabled$macro$4) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("enabled"), Boolean, shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("enabled")]](scala.Symbol.apply("enabled").asInstanceOf[Symbol @@ String("enabled")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("enabled")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$7.this.inst$macro$6)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.PushProposalCardResponse]]; <stable> <accessor> lazy val inst$macro$6: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForenabled: io.circe.Decoder[Boolean] = circe.this.Decoder.decodeBoolean; private[this] val circeGenericEncoderForenabled: io.circe.Encoder[Boolean] = circe.this.Encoder.encodeBoolean; final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForenabled @ _), shapeless.HNil) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("enabled", $anon.this.circeGenericEncoderForenabled.apply(circeGenericHListBindingForenabled)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("enabled"), Boolean, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForenabled.tryDecode(c.downField("enabled")), ReprDecoder.hnilResult)(io.circe.Decoder.resultInstance); final override def decodeAccumulating(c: io.circe.HCursor): io.circe.Decoder.AccumulatingResult[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("enabled"), Boolean, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForenabled.tryDecodeAccumulating(c.downField("enabled")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$7().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.PushProposalCardResponse]](inst$macro$8) })
125 29654 4276 - 4287 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.FinalCardResponse]({ val inst$macro$32: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.FinalCardResponse] = { 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.codec.DerivedAsObjectCodec[org.make.api.question.FinalCardResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.FinalCardResponse, shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.FinalCardResponse, (Symbol @@ String("enabled")) :: (Symbol @@ String("withSharing")) :: (Symbol @@ String("title")) :: (Symbol @@ String("share")) :: (Symbol @@ String("learnMoreTitle")) :: (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil, Boolean :: Boolean :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.FinalCardResponse, (Symbol @@ String("enabled")) :: (Symbol @@ String("withSharing")) :: (Symbol @@ String("title")) :: (Symbol @@ String("share")) :: (Symbol @@ String("learnMoreTitle")) :: (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil](::.apply[Symbol @@ String("enabled"), (Symbol @@ String("withSharing")) :: (Symbol @@ String("title")) :: (Symbol @@ String("share")) :: (Symbol @@ String("learnMoreTitle")) :: (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil.type](scala.Symbol.apply("enabled").asInstanceOf[Symbol @@ String("enabled")], ::.apply[Symbol @@ String("withSharing"), (Symbol @@ String("title")) :: (Symbol @@ String("share")) :: (Symbol @@ String("learnMoreTitle")) :: (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil.type](scala.Symbol.apply("withSharing").asInstanceOf[Symbol @@ String("withSharing")], ::.apply[Symbol @@ String("title"), (Symbol @@ String("share")) :: (Symbol @@ String("learnMoreTitle")) :: (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil.type](scala.Symbol.apply("title").asInstanceOf[Symbol @@ String("title")], ::.apply[Symbol @@ String("share"), (Symbol @@ String("learnMoreTitle")) :: (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil.type](scala.Symbol.apply("share").asInstanceOf[Symbol @@ String("share")], ::.apply[Symbol @@ String("learnMoreTitle"), (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil.type](scala.Symbol.apply("learnMoreTitle").asInstanceOf[Symbol @@ String("learnMoreTitle")], ::.apply[Symbol @@ String("learnMoreTextButton"), (Symbol @@ String("linkUrl")) :: shapeless.HNil.type](scala.Symbol.apply("learnMoreTextButton").asInstanceOf[Symbol @@ String("learnMoreTextButton")], ::.apply[Symbol @@ String("linkUrl"), shapeless.HNil.type](scala.Symbol.apply("linkUrl").asInstanceOf[Symbol @@ String("linkUrl")], HNil)))))))), Generic.instance[org.make.api.question.FinalCardResponse, Boolean :: Boolean :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil](((x0$3: org.make.api.question.FinalCardResponse) => x0$3 match { case (enabled: Boolean, withSharing: Boolean, title: Option[String], share: Option[String], learnMoreTitle: Option[String], learnMoreTextButton: Option[String], linkUrl: Option[String]): org.make.api.question.FinalCardResponse((enabled$macro$23 @ _), (withSharing$macro$24 @ _), (title$macro$25 @ _), (share$macro$26 @ _), (learnMoreTitle$macro$27 @ _), (learnMoreTextButton$macro$28 @ _), (linkUrl$macro$29 @ _)) => ::.apply[Boolean, Boolean :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil.type](enabled$macro$23, ::.apply[Boolean, Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil.type](withSharing$macro$24, ::.apply[Option[String], Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil.type](title$macro$25, ::.apply[Option[String], Option[String] :: Option[String] :: Option[String] :: shapeless.HNil.type](share$macro$26, ::.apply[Option[String], Option[String] :: Option[String] :: shapeless.HNil.type](learnMoreTitle$macro$27, ::.apply[Option[String], Option[String] :: shapeless.HNil.type](learnMoreTextButton$macro$28, ::.apply[Option[String], shapeless.HNil.type](linkUrl$macro$29, HNil))))))).asInstanceOf[Boolean :: Boolean :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil] }), ((x0$4: Boolean :: Boolean :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil) => x0$4 match { case (head: Boolean, tail: Boolean :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil): Boolean :: Boolean :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil((enabled$macro$16 @ _), (head: Boolean, tail: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil): Boolean :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil((withSharing$macro$17 @ _), (head: Option[String], tail: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil): Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil((title$macro$18 @ _), (head: Option[String], tail: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil): Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil((share$macro$19 @ _), (head: Option[String], tail: Option[String] :: Option[String] :: shapeless.HNil): Option[String] :: Option[String] :: Option[String] :: shapeless.HNil((learnMoreTitle$macro$20 @ _), (head: Option[String], tail: Option[String] :: shapeless.HNil): Option[String] :: Option[String] :: shapeless.HNil((learnMoreTextButton$macro$21 @ _), (head: Option[String], tail: shapeless.HNil): Option[String] :: shapeless.HNil((linkUrl$macro$22 @ _), HNil))))))) => question.this.FinalCardResponse.apply(enabled$macro$16, withSharing$macro$17, title$macro$18, share$macro$19, learnMoreTitle$macro$20, learnMoreTextButton$macro$21, linkUrl$macro$22) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("enabled"), Boolean, (Symbol @@ String("withSharing")) :: (Symbol @@ String("title")) :: (Symbol @@ String("share")) :: (Symbol @@ String("learnMoreTitle")) :: (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil, Boolean :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("withSharing"), Boolean, (Symbol @@ String("title")) :: (Symbol @@ String("share")) :: (Symbol @@ String("learnMoreTitle")) :: (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil, Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("title"), Option[String], (Symbol @@ String("share")) :: (Symbol @@ String("learnMoreTitle")) :: (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil, Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("share"), Option[String], (Symbol @@ String("learnMoreTitle")) :: (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil, Option[String] :: Option[String] :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("learnMoreTitle"), Option[String], (Symbol @@ String("learnMoreTextButton")) :: (Symbol @@ String("linkUrl")) :: shapeless.HNil, Option[String] :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("learnMoreTextButton"), Option[String], (Symbol @@ String("linkUrl")) :: shapeless.HNil, Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("linkUrl"), Option[String], shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("linkUrl")]](scala.Symbol.apply("linkUrl").asInstanceOf[Symbol @@ String("linkUrl")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("linkUrl")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("learnMoreTextButton")]](scala.Symbol.apply("learnMoreTextButton").asInstanceOf[Symbol @@ String("learnMoreTextButton")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("learnMoreTextButton")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("learnMoreTitle")]](scala.Symbol.apply("learnMoreTitle").asInstanceOf[Symbol @@ String("learnMoreTitle")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("learnMoreTitle")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("share")]](scala.Symbol.apply("share").asInstanceOf[Symbol @@ String("share")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("share")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("title")]](scala.Symbol.apply("title").asInstanceOf[Symbol @@ String("title")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("title")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("withSharing")]](scala.Symbol.apply("withSharing").asInstanceOf[Symbol @@ String("withSharing")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("withSharing")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("enabled")]](scala.Symbol.apply("enabled").asInstanceOf[Symbol @@ String("enabled")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("enabled")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$31.this.inst$macro$30)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.FinalCardResponse]]; <stable> <accessor> lazy val inst$macro$30: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForwithSharing: io.circe.Decoder[Boolean] = circe.this.Decoder.decodeBoolean; private[this] val circeGenericDecoderForlinkUrl: io.circe.Decoder[Option[String]] = circe.this.Decoder.decodeOption[String](circe.this.Decoder.decodeString); private[this] val circeGenericEncoderForwithSharing: io.circe.Encoder[Boolean] = circe.this.Encoder.encodeBoolean; private[this] val circeGenericEncoderForlinkUrl: io.circe.Encoder[Option[String]] = circe.this.Encoder.encodeOption[String](circe.this.Encoder.encodeString); final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean], tail: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForenabled @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean], tail: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForwithSharing @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFortitle @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForshare @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForlearnMoreTitle @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForlearnMoreTextButton @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForlinkUrl @ _), shapeless.HNil))))))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("enabled", $anon.this.circeGenericEncoderForwithSharing.apply(circeGenericHListBindingForenabled)), scala.Tuple2.apply[String, io.circe.Json]("withSharing", $anon.this.circeGenericEncoderForwithSharing.apply(circeGenericHListBindingForwithSharing)), scala.Tuple2.apply[String, io.circe.Json]("title", $anon.this.circeGenericEncoderForlinkUrl.apply(circeGenericHListBindingFortitle)), scala.Tuple2.apply[String, io.circe.Json]("share", $anon.this.circeGenericEncoderForlinkUrl.apply(circeGenericHListBindingForshare)), scala.Tuple2.apply[String, io.circe.Json]("learnMoreTitle", $anon.this.circeGenericEncoderForlinkUrl.apply(circeGenericHListBindingForlearnMoreTitle)), scala.Tuple2.apply[String, io.circe.Json]("learnMoreTextButton", $anon.this.circeGenericEncoderForlinkUrl.apply(circeGenericHListBindingForlearnMoreTextButton)), scala.Tuple2.apply[String, io.circe.Json]("linkUrl", $anon.this.circeGenericEncoderForlinkUrl.apply(circeGenericHListBindingForlinkUrl)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("enabled"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForwithSharing.tryDecode(c.downField("enabled")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("withSharing"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForwithSharing.tryDecode(c.downField("withSharing")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("title"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlinkUrl.tryDecode(c.downField("title")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("share"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlinkUrl.tryDecode(c.downField("share")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("learnMoreTitle"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlinkUrl.tryDecode(c.downField("learnMoreTitle")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("learnMoreTextButton"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlinkUrl.tryDecode(c.downField("learnMoreTextButton")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("linkUrl"), Option[String], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlinkUrl.tryDecode(c.downField("linkUrl")), 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("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("enabled"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForwithSharing.tryDecodeAccumulating(c.downField("enabled")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("withSharing"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForwithSharing.tryDecodeAccumulating(c.downField("withSharing")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("title"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlinkUrl.tryDecodeAccumulating(c.downField("title")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("share"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlinkUrl.tryDecodeAccumulating(c.downField("share")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("learnMoreTitle"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlinkUrl.tryDecodeAccumulating(c.downField("learnMoreTitle")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("learnMoreTextButton"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlinkUrl.tryDecodeAccumulating(c.downField("learnMoreTextButton")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("linkUrl"), Option[String], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlinkUrl.tryDecodeAccumulating(c.downField("linkUrl")), 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.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("enabled"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("withSharing"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("title"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("share"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTitle"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("learnMoreTextButton"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("linkUrl"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$31().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.FinalCardResponse]](inst$macro$32) })
135 28897 4590 - 4601 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.SequenceCardsConfigurationResponse]({ val inst$macro$16: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.SequenceCardsConfigurationResponse] = { final class anon$lazy$macro$15 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$15 = { anon$lazy$macro$15.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.SequenceCardsConfigurationResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.SequenceCardsConfigurationResponse, shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.SequenceCardsConfigurationResponse, (Symbol @@ String("introCard")) :: (Symbol @@ String("pushProposalCard")) :: (Symbol @@ String("finalCard")) :: shapeless.HNil, org.make.api.question.IntroCardResponse :: org.make.api.question.PushProposalCardResponse :: org.make.api.question.FinalCardResponse :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.SequenceCardsConfigurationResponse, (Symbol @@ String("introCard")) :: (Symbol @@ String("pushProposalCard")) :: (Symbol @@ String("finalCard")) :: shapeless.HNil](::.apply[Symbol @@ String("introCard"), (Symbol @@ String("pushProposalCard")) :: (Symbol @@ String("finalCard")) :: shapeless.HNil.type](scala.Symbol.apply("introCard").asInstanceOf[Symbol @@ String("introCard")], ::.apply[Symbol @@ String("pushProposalCard"), (Symbol @@ String("finalCard")) :: shapeless.HNil.type](scala.Symbol.apply("pushProposalCard").asInstanceOf[Symbol @@ String("pushProposalCard")], ::.apply[Symbol @@ String("finalCard"), shapeless.HNil.type](scala.Symbol.apply("finalCard").asInstanceOf[Symbol @@ String("finalCard")], HNil)))), Generic.instance[org.make.api.question.SequenceCardsConfigurationResponse, org.make.api.question.IntroCardResponse :: org.make.api.question.PushProposalCardResponse :: org.make.api.question.FinalCardResponse :: shapeless.HNil](((x0$3: org.make.api.question.SequenceCardsConfigurationResponse) => x0$3 match { case (introCard: org.make.api.question.IntroCardResponse, pushProposalCard: org.make.api.question.PushProposalCardResponse, finalCard: org.make.api.question.FinalCardResponse): org.make.api.question.SequenceCardsConfigurationResponse((introCard$macro$11 @ _), (pushProposalCard$macro$12 @ _), (finalCard$macro$13 @ _)) => ::.apply[org.make.api.question.IntroCardResponse, org.make.api.question.PushProposalCardResponse :: org.make.api.question.FinalCardResponse :: shapeless.HNil.type](introCard$macro$11, ::.apply[org.make.api.question.PushProposalCardResponse, org.make.api.question.FinalCardResponse :: shapeless.HNil.type](pushProposalCard$macro$12, ::.apply[org.make.api.question.FinalCardResponse, shapeless.HNil.type](finalCard$macro$13, HNil))).asInstanceOf[org.make.api.question.IntroCardResponse :: org.make.api.question.PushProposalCardResponse :: org.make.api.question.FinalCardResponse :: shapeless.HNil] }), ((x0$4: org.make.api.question.IntroCardResponse :: org.make.api.question.PushProposalCardResponse :: org.make.api.question.FinalCardResponse :: shapeless.HNil) => x0$4 match { case (head: org.make.api.question.IntroCardResponse, tail: org.make.api.question.PushProposalCardResponse :: org.make.api.question.FinalCardResponse :: shapeless.HNil): org.make.api.question.IntroCardResponse :: org.make.api.question.PushProposalCardResponse :: org.make.api.question.FinalCardResponse :: shapeless.HNil((introCard$macro$8 @ _), (head: org.make.api.question.PushProposalCardResponse, tail: org.make.api.question.FinalCardResponse :: shapeless.HNil): org.make.api.question.PushProposalCardResponse :: org.make.api.question.FinalCardResponse :: shapeless.HNil((pushProposalCard$macro$9 @ _), (head: org.make.api.question.FinalCardResponse, tail: shapeless.HNil): org.make.api.question.FinalCardResponse :: shapeless.HNil((finalCard$macro$10 @ _), HNil))) => question.this.SequenceCardsConfigurationResponse.apply(introCard$macro$8, pushProposalCard$macro$9, finalCard$macro$10) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("introCard"), org.make.api.question.IntroCardResponse, (Symbol @@ String("pushProposalCard")) :: (Symbol @@ String("finalCard")) :: shapeless.HNil, org.make.api.question.PushProposalCardResponse :: org.make.api.question.FinalCardResponse :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("pushProposalCard"), org.make.api.question.PushProposalCardResponse, (Symbol @@ String("finalCard")) :: shapeless.HNil, org.make.api.question.FinalCardResponse :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("finalCard"), org.make.api.question.FinalCardResponse, shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("finalCard")]](scala.Symbol.apply("finalCard").asInstanceOf[Symbol @@ String("finalCard")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("finalCard")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("pushProposalCard")]](scala.Symbol.apply("pushProposalCard").asInstanceOf[Symbol @@ String("pushProposalCard")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("pushProposalCard")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("introCard")]](scala.Symbol.apply("introCard").asInstanceOf[Symbol @@ String("introCard")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("introCard")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$15.this.inst$macro$14)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.SequenceCardsConfigurationResponse]]; <stable> <accessor> lazy val inst$macro$14: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForintroCard: io.circe.Codec[org.make.api.question.IntroCardResponse] = question.this.IntroCardResponse.codec; private[this] val circeGenericDecoderForpushProposalCard: io.circe.Codec[org.make.api.question.PushProposalCardResponse] = question.this.PushProposalCardResponse.codec; private[this] val circeGenericDecoderForfinalCard: io.circe.Codec[org.make.api.question.FinalCardResponse] = question.this.FinalCardResponse.codec; private[this] val circeGenericEncoderForintroCard: io.circe.Codec[org.make.api.question.IntroCardResponse] = question.this.IntroCardResponse.codec; private[this] val circeGenericEncoderForpushProposalCard: io.circe.Codec[org.make.api.question.PushProposalCardResponse] = question.this.PushProposalCardResponse.codec; private[this] val circeGenericEncoderForfinalCard: io.circe.Codec[org.make.api.question.FinalCardResponse] = question.this.FinalCardResponse.codec; final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse], tail: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForintroCard @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse], tail: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForpushProposalCard @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForfinalCard @ _), shapeless.HNil))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("introCard", $anon.this.circeGenericEncoderForintroCard.apply(circeGenericHListBindingForintroCard)), scala.Tuple2.apply[String, io.circe.Json]("pushProposalCard", $anon.this.circeGenericEncoderForpushProposalCard.apply(circeGenericHListBindingForpushProposalCard)), scala.Tuple2.apply[String, io.circe.Json]("finalCard", $anon.this.circeGenericEncoderForfinalCard.apply(circeGenericHListBindingForfinalCard)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("introCard"), org.make.api.question.IntroCardResponse, shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForintroCard.tryDecode(c.downField("introCard")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("pushProposalCard"), org.make.api.question.PushProposalCardResponse, shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpushProposalCard.tryDecode(c.downField("pushProposalCard")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("finalCard"), org.make.api.question.FinalCardResponse, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfinalCard.tryDecode(c.downField("finalCard")), ReprDecoder.hnilResult)(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("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("introCard"), org.make.api.question.IntroCardResponse, shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForintroCard.tryDecodeAccumulating(c.downField("introCard")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("pushProposalCard"), org.make.api.question.PushProposalCardResponse, shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpushProposalCard.tryDecodeAccumulating(c.downField("pushProposalCard")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("finalCard"), org.make.api.question.FinalCardResponse, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfinalCard.tryDecodeAccumulating(c.downField("finalCard")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("introCard"),org.make.api.question.IntroCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("pushProposalCard"),org.make.api.question.PushProposalCardResponse] :: shapeless.labelled.FieldType[Symbol @@ String("finalCard"),org.make.api.question.FinalCardResponse] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$15().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.SequenceCardsConfigurationResponse]](inst$macro$16) })
141 28994 4754 - 5963 Apply org.make.api.question.SequenceCardsConfigurationResponse.apply SequenceCardsConfigurationResponse.apply(IntroCardResponse.apply(sequenceCardConfiguration.introCard.enabled, sequenceCardConfiguration.introCard.titles.flatMap[String](((x$3: org.make.core.technical.Multilingual[String]) => x$3.getTranslation(returnedLanguage))), sequenceCardConfiguration.introCard.descriptions.flatMap[String](((x$4: org.make.core.technical.Multilingual[String]) => x$4.getTranslation(returnedLanguage)))), PushProposalCardResponse.apply(sequenceCardConfiguration.pushProposalCard.enabled), FinalCardResponse.apply(sequenceCardConfiguration.finalCard.enabled, sequenceCardConfiguration.finalCard.sharingEnabled, sequenceCardConfiguration.finalCard.titles.flatMap[String](((x$5: org.make.core.technical.Multilingual[String]) => x$5.getTranslation(returnedLanguage))), sequenceCardConfiguration.finalCard.shareDescriptions.flatMap[String](((x$6: org.make.core.technical.Multilingual[String]) => x$6.getTranslation(returnedLanguage))), sequenceCardConfiguration.finalCard.learnMoreTitles.flatMap[String](((x$7: org.make.core.technical.Multilingual[String]) => x$7.getTranslation(returnedLanguage))), sequenceCardConfiguration.finalCard.learnMoreTextButtons.flatMap[String](((x$8: org.make.core.technical.Multilingual[String]) => x$8.getTranslation(returnedLanguage))), sequenceCardConfiguration.finalCard.linkUrl))
142 29164 4808 - 5116 Apply org.make.api.question.IntroCardResponse.apply IntroCardResponse.apply(sequenceCardConfiguration.introCard.enabled, sequenceCardConfiguration.introCard.titles.flatMap[String](((x$3: org.make.core.technical.Multilingual[String]) => x$3.getTranslation(returnedLanguage))), sequenceCardConfiguration.introCard.descriptions.flatMap[String](((x$4: org.make.core.technical.Multilingual[String]) => x$4.getTranslation(returnedLanguage))))
143 28469 4845 - 4888 Select org.make.core.operation.IntroCard.enabled sequenceCardConfiguration.introCard.enabled
144 29028 4906 - 4992 Apply scala.Option.flatMap sequenceCardConfiguration.introCard.titles.flatMap[String](((x$3: org.make.core.technical.Multilingual[String]) => x$3.getTranslation(returnedLanguage)))
144 29823 4957 - 4991 Apply org.make.core.technical.Multilingual.getTranslation x$3.getTranslation(returnedLanguage)
145 30345 5073 - 5107 Apply org.make.core.technical.Multilingual.getTranslation x$4.getTranslation(returnedLanguage)
145 29575 5016 - 5108 Apply scala.Option.flatMap sequenceCardConfiguration.introCard.descriptions.flatMap[String](((x$4: org.make.core.technical.Multilingual[String]) => x$4.getTranslation(returnedLanguage)))
147 29734 5143 - 5229 Apply org.make.api.question.PushProposalCardResponse.apply PushProposalCardResponse.apply(sequenceCardConfiguration.pushProposalCard.enabled)
147 28325 5178 - 5228 Select org.make.core.operation.PushProposalCard.enabled sequenceCardConfiguration.pushProposalCard.enabled
148 29801 5249 - 5957 Apply org.make.api.question.FinalCardResponse.apply FinalCardResponse.apply(sequenceCardConfiguration.finalCard.enabled, sequenceCardConfiguration.finalCard.sharingEnabled, sequenceCardConfiguration.finalCard.titles.flatMap[String](((x$5: org.make.core.technical.Multilingual[String]) => x$5.getTranslation(returnedLanguage))), sequenceCardConfiguration.finalCard.shareDescriptions.flatMap[String](((x$6: org.make.core.technical.Multilingual[String]) => x$6.getTranslation(returnedLanguage))), sequenceCardConfiguration.finalCard.learnMoreTitles.flatMap[String](((x$7: org.make.core.technical.Multilingual[String]) => x$7.getTranslation(returnedLanguage))), sequenceCardConfiguration.finalCard.learnMoreTextButtons.flatMap[String](((x$8: org.make.core.technical.Multilingual[String]) => x$8.getTranslation(returnedLanguage))), sequenceCardConfiguration.finalCard.linkUrl)
149 28900 5286 - 5329 Select org.make.core.operation.FinalCard.enabled sequenceCardConfiguration.finalCard.enabled
150 28449 5353 - 5403 Select org.make.core.operation.FinalCard.sharingEnabled sequenceCardConfiguration.finalCard.sharingEnabled
151 29798 5472 - 5506 Apply org.make.core.technical.Multilingual.getTranslation x$5.getTranslation(returnedLanguage)
151 29031 5421 - 5507 Apply scala.Option.flatMap sequenceCardConfiguration.finalCard.titles.flatMap[String](((x$5: org.make.core.technical.Multilingual[String]) => x$5.getTranslation(returnedLanguage)))
152 29537 5525 - 5622 Apply scala.Option.flatMap sequenceCardConfiguration.finalCard.shareDescriptions.flatMap[String](((x$6: org.make.core.technical.Multilingual[String]) => x$6.getTranslation(returnedLanguage)))
152 30327 5587 - 5621 Apply org.make.core.technical.Multilingual.getTranslation x$6.getTranslation(returnedLanguage)
153 29112 5709 - 5743 Apply org.make.core.technical.Multilingual.getTranslation x$7.getTranslation(returnedLanguage)
153 28288 5649 - 5744 Apply scala.Option.flatMap sequenceCardConfiguration.finalCard.learnMoreTitles.flatMap[String](((x$7: org.make.core.technical.Multilingual[String]) => x$7.getTranslation(returnedLanguage)))
155 28820 5786 - 5886 Apply scala.Option.flatMap sequenceCardConfiguration.finalCard.learnMoreTextButtons.flatMap[String](((x$8: org.make.core.technical.Multilingual[String]) => x$8.getTranslation(returnedLanguage)))
155 29738 5851 - 5885 Apply org.make.core.technical.Multilingual.getTranslation x$8.getTranslation(returnedLanguage)
156 28413 5906 - 5949 Select org.make.core.operation.FinalCard.linkUrl sequenceCardConfiguration.finalCard.linkUrl
165 30332 6151 - 6162 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.OrganisationPartnerResponse]({ val inst$macro$12: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.OrganisationPartnerResponse] = { final class anon$lazy$macro$11 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$11 = { anon$lazy$macro$11.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.OrganisationPartnerResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.OrganisationPartnerResponse, shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.OrganisationPartnerResponse, (Symbol @@ String("organisationId")) :: (Symbol @@ String("slug")) :: shapeless.HNil, org.make.core.user.UserId :: String :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.OrganisationPartnerResponse, (Symbol @@ String("organisationId")) :: (Symbol @@ String("slug")) :: shapeless.HNil](::.apply[Symbol @@ String("organisationId"), (Symbol @@ String("slug")) :: shapeless.HNil.type](scala.Symbol.apply("organisationId").asInstanceOf[Symbol @@ String("organisationId")], ::.apply[Symbol @@ String("slug"), shapeless.HNil.type](scala.Symbol.apply("slug").asInstanceOf[Symbol @@ String("slug")], HNil))), Generic.instance[org.make.api.question.OrganisationPartnerResponse, org.make.core.user.UserId :: String :: shapeless.HNil](((x0$3: org.make.api.question.OrganisationPartnerResponse) => x0$3 match { case (organisationId: org.make.core.user.UserId, slug: String): org.make.api.question.OrganisationPartnerResponse((organisationId$macro$8 @ _), (slug$macro$9 @ _)) => ::.apply[org.make.core.user.UserId, String :: shapeless.HNil.type](organisationId$macro$8, ::.apply[String, shapeless.HNil.type](slug$macro$9, HNil)).asInstanceOf[org.make.core.user.UserId :: String :: shapeless.HNil] }), ((x0$4: org.make.core.user.UserId :: String :: shapeless.HNil) => x0$4 match { case (head: org.make.core.user.UserId, tail: String :: shapeless.HNil): org.make.core.user.UserId :: String :: shapeless.HNil((organisationId$macro$6 @ _), (head: String, tail: shapeless.HNil): String :: shapeless.HNil((slug$macro$7 @ _), HNil)) => question.this.OrganisationPartnerResponse.apply(organisationId$macro$6, slug$macro$7) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("organisationId"), org.make.core.user.UserId, (Symbol @@ String("slug")) :: shapeless.HNil, String :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("slug"), String, shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("slug")]](scala.Symbol.apply("slug").asInstanceOf[Symbol @@ String("slug")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("slug")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("organisationId")]](scala.Symbol.apply("organisationId").asInstanceOf[Symbol @@ String("organisationId")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("organisationId")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$11.this.inst$macro$10)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.OrganisationPartnerResponse]]; <stable> <accessor> lazy val inst$macro$10: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderFororganisationId: io.circe.Decoder[org.make.core.user.UserId] = user.this.UserId.userIdDecoder; private[this] val circeGenericDecoderForslug: io.circe.Decoder[String] = circe.this.Decoder.decodeString; private[this] val circeGenericEncoderFororganisationId: io.circe.Encoder[org.make.core.user.UserId] = user.this.UserId.userIdEncoder; private[this] val circeGenericEncoderForslug: io.circe.Encoder[String] = circe.this.Encoder.encodeString; final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId], tail: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFororganisationId @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("slug"),String], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForslug @ _), shapeless.HNil)) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("organisationId", $anon.this.circeGenericEncoderFororganisationId.apply(circeGenericHListBindingFororganisationId)), scala.Tuple2.apply[String, io.circe.Json]("slug", $anon.this.circeGenericEncoderForslug.apply(circeGenericHListBindingForslug)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("organisationId"), org.make.core.user.UserId, shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFororganisationId.tryDecode(c.downField("organisationId")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("slug"), String, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForslug.tryDecode(c.downField("slug")), ReprDecoder.hnilResult)(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("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("organisationId"), org.make.core.user.UserId, shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFororganisationId.tryDecodeAccumulating(c.downField("organisationId")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("slug"), String, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForslug.tryDecodeAccumulating(c.downField("slug")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("organisationId"),org.make.core.user.UserId] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$11().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.OrganisationPartnerResponse]](inst$macro$12) })
182 29517 6915 - 7292 Apply org.make.api.question.QuestionPartnerResponse.apply QuestionPartnerResponse.apply(partner.name, partner.logo, partner.link, organisation.map[org.make.api.question.OrganisationPartnerResponse](((orga: org.make.core.user.User) => OrganisationPartnerResponse.apply(orga.userId, orga.organisationName.map[String](((value: String) => org.make.core.SlugHelper.apply(value))).getOrElse[String]("")))), partner.partnerKind, partner.weight)
183 29512 6951 - 6963 Select org.make.core.partner.Partner.name partner.name
184 29156 6976 - 6988 Select org.make.core.partner.Partner.logo partner.logo
185 28291 7001 - 7013 Select org.make.core.partner.Partner.link partner.link
186 29861 7034 - 7220 Apply scala.Option.map organisation.map[org.make.api.question.OrganisationPartnerResponse](((orga: org.make.core.user.User) => OrganisationPartnerResponse.apply(orga.userId, orga.organisationName.map[String](((value: String) => org.make.core.SlugHelper.apply(value))).getOrElse[String](""))))
187 30297 7067 - 7214 Apply org.make.api.question.OrganisationPartnerResponse.apply OrganisationPartnerResponse.apply(orga.userId, orga.organisationName.map[String](((value: String) => org.make.core.SlugHelper.apply(value))).getOrElse[String](""))
188 29766 7121 - 7132 Select org.make.core.user.User.userId orga.userId
189 28831 7149 - 7206 Apply scala.Option.getOrElse orga.organisationName.map[String](((value: String) => org.make.core.SlugHelper.apply(value))).getOrElse[String]("")
192 28999 7240 - 7259 Select org.make.core.partner.Partner.partnerKind partner.partnerKind
193 30437 7274 - 7288 Select org.make.core.partner.Partner.weight partner.weight
196 29161 7349 - 7360 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.QuestionPartnerResponse]({ val inst$macro$28: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionPartnerResponse] = { final class anon$lazy$macro$27 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$27 = { anon$lazy$macro$27.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionPartnerResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.QuestionPartnerResponse, shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.QuestionPartnerResponse, (Symbol @@ String("name")) :: (Symbol @@ String("logo")) :: (Symbol @@ String("link")) :: (Symbol @@ String("organisation")) :: (Symbol @@ String("partnerKind")) :: (Symbol @@ String("weight")) :: shapeless.HNil, String :: Option[String] :: Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.QuestionPartnerResponse, (Symbol @@ String("name")) :: (Symbol @@ String("logo")) :: (Symbol @@ String("link")) :: (Symbol @@ String("organisation")) :: (Symbol @@ String("partnerKind")) :: (Symbol @@ String("weight")) :: shapeless.HNil](::.apply[Symbol @@ String("name"), (Symbol @@ String("logo")) :: (Symbol @@ String("link")) :: (Symbol @@ String("organisation")) :: (Symbol @@ String("partnerKind")) :: (Symbol @@ String("weight")) :: shapeless.HNil.type](scala.Symbol.apply("name").asInstanceOf[Symbol @@ String("name")], ::.apply[Symbol @@ String("logo"), (Symbol @@ String("link")) :: (Symbol @@ String("organisation")) :: (Symbol @@ String("partnerKind")) :: (Symbol @@ String("weight")) :: shapeless.HNil.type](scala.Symbol.apply("logo").asInstanceOf[Symbol @@ String("logo")], ::.apply[Symbol @@ String("link"), (Symbol @@ String("organisation")) :: (Symbol @@ String("partnerKind")) :: (Symbol @@ String("weight")) :: shapeless.HNil.type](scala.Symbol.apply("link").asInstanceOf[Symbol @@ String("link")], ::.apply[Symbol @@ String("organisation"), (Symbol @@ String("partnerKind")) :: (Symbol @@ String("weight")) :: shapeless.HNil.type](scala.Symbol.apply("organisation").asInstanceOf[Symbol @@ String("organisation")], ::.apply[Symbol @@ String("partnerKind"), (Symbol @@ String("weight")) :: shapeless.HNil.type](scala.Symbol.apply("partnerKind").asInstanceOf[Symbol @@ String("partnerKind")], ::.apply[Symbol @@ String("weight"), shapeless.HNil.type](scala.Symbol.apply("weight").asInstanceOf[Symbol @@ String("weight")], HNil))))))), Generic.instance[org.make.api.question.QuestionPartnerResponse, String :: Option[String] :: Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil](((x0$3: org.make.api.question.QuestionPartnerResponse) => x0$3 match { case (name: String, logo: Option[String], link: Option[String], organisation: Option[org.make.api.question.OrganisationPartnerResponse], partnerKind: org.make.core.partner.PartnerKind, weight: Float): org.make.api.question.QuestionPartnerResponse((name$macro$20 @ _), (logo$macro$21 @ _), (link$macro$22 @ _), (organisation$macro$23 @ _), (partnerKind$macro$24 @ _), (weight$macro$25 @ _)) => ::.apply[String, Option[String] :: Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil.type](name$macro$20, ::.apply[Option[String], Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil.type](logo$macro$21, ::.apply[Option[String], Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil.type](link$macro$22, ::.apply[Option[org.make.api.question.OrganisationPartnerResponse], org.make.core.partner.PartnerKind :: Float :: shapeless.HNil.type](organisation$macro$23, ::.apply[org.make.core.partner.PartnerKind, Float :: shapeless.HNil.type](partnerKind$macro$24, ::.apply[Float, shapeless.HNil.type](weight$macro$25, HNil)))))).asInstanceOf[String :: Option[String] :: Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil] }), ((x0$4: String :: Option[String] :: Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil) => x0$4 match { case (head: String, tail: Option[String] :: Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil): String :: Option[String] :: Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil((name$macro$14 @ _), (head: Option[String], tail: Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil): Option[String] :: Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil((logo$macro$15 @ _), (head: Option[String], tail: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil): Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil((link$macro$16 @ _), (head: Option[org.make.api.question.OrganisationPartnerResponse], tail: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil): Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil((organisation$macro$17 @ _), (head: org.make.core.partner.PartnerKind, tail: Float :: shapeless.HNil): org.make.core.partner.PartnerKind :: Float :: shapeless.HNil((partnerKind$macro$18 @ _), (head: Float, tail: shapeless.HNil): Float :: shapeless.HNil((weight$macro$19 @ _), HNil)))))) => question.this.QuestionPartnerResponse.apply(name$macro$14, logo$macro$15, link$macro$16, organisation$macro$17, partnerKind$macro$18, weight$macro$19) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("name"), String, (Symbol @@ String("logo")) :: (Symbol @@ String("link")) :: (Symbol @@ String("organisation")) :: (Symbol @@ String("partnerKind")) :: (Symbol @@ String("weight")) :: shapeless.HNil, Option[String] :: Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("logo"), Option[String], (Symbol @@ String("link")) :: (Symbol @@ String("organisation")) :: (Symbol @@ String("partnerKind")) :: (Symbol @@ String("weight")) :: shapeless.HNil, Option[String] :: Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("link"), Option[String], (Symbol @@ String("organisation")) :: (Symbol @@ String("partnerKind")) :: (Symbol @@ String("weight")) :: shapeless.HNil, Option[org.make.api.question.OrganisationPartnerResponse] :: org.make.core.partner.PartnerKind :: Float :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("organisation"), Option[org.make.api.question.OrganisationPartnerResponse], (Symbol @@ String("partnerKind")) :: (Symbol @@ String("weight")) :: shapeless.HNil, org.make.core.partner.PartnerKind :: Float :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("partnerKind"), org.make.core.partner.PartnerKind, (Symbol @@ String("weight")) :: shapeless.HNil, Float :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("weight"), Float, shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, 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("partnerKind")]](scala.Symbol.apply("partnerKind").asInstanceOf[Symbol @@ String("partnerKind")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("partnerKind")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("organisation")]](scala.Symbol.apply("organisation").asInstanceOf[Symbol @@ String("organisation")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("organisation")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("link")]](scala.Symbol.apply("link").asInstanceOf[Symbol @@ String("link")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("link")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("logo")]](scala.Symbol.apply("logo").asInstanceOf[Symbol @@ String("logo")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("logo")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("name")]](scala.Symbol.apply("name").asInstanceOf[Symbol @@ String("name")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("name")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$27.this.inst$macro$26)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionPartnerResponse]]; <stable> <accessor> lazy val inst$macro$26: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForname: io.circe.Decoder[String] = circe.this.Decoder.decodeString; private[this] val circeGenericDecoderForlink: io.circe.Decoder[Option[String]] = circe.this.Decoder.decodeOption[String](circe.this.Decoder.decodeString); private[this] val circeGenericDecoderFororganisation: io.circe.Decoder[Option[org.make.api.question.OrganisationPartnerResponse]] = circe.this.Decoder.decodeOption[org.make.api.question.OrganisationPartnerResponse](question.this.OrganisationPartnerResponse.codec); private[this] val circeGenericDecoderForpartnerKind: io.circe.Decoder[org.make.core.partner.PartnerKind] = partner.this.PartnerKind.circeDecoder; private[this] val circeGenericDecoderForweight: io.circe.Decoder[Float] = circe.this.Decoder.decodeFloat; private[this] val circeGenericEncoderForname: io.circe.Encoder[String] = circe.this.Encoder.encodeString; private[this] val circeGenericEncoderForlink: io.circe.Encoder[Option[String]] = circe.this.Encoder.encodeOption[String](circe.this.Encoder.encodeString); private[this] val circeGenericEncoderFororganisation: io.circe.Encoder[Option[org.make.api.question.OrganisationPartnerResponse]] = circe.this.Encoder.encodeOption[org.make.api.question.OrganisationPartnerResponse](question.this.OrganisationPartnerResponse.codec); private[this] val circeGenericEncoderForpartnerKind: io.circe.Encoder[org.make.core.partner.PartnerKind] = partner.this.PartnerKind.circeEncoder; private[this] val circeGenericEncoderForweight: io.circe.Encoder[Float] = circe.this.Encoder.encodeFloat; final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("name"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForname @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForlogo @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForlink @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]], tail: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFororganisation @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind], tail: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForpartnerKind @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForweight @ _), shapeless.HNil)))))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("name", $anon.this.circeGenericEncoderForname.apply(circeGenericHListBindingForname)), scala.Tuple2.apply[String, io.circe.Json]("logo", $anon.this.circeGenericEncoderForlink.apply(circeGenericHListBindingForlogo)), scala.Tuple2.apply[String, io.circe.Json]("link", $anon.this.circeGenericEncoderForlink.apply(circeGenericHListBindingForlink)), scala.Tuple2.apply[String, io.circe.Json]("organisation", $anon.this.circeGenericEncoderFororganisation.apply(circeGenericHListBindingFororganisation)), scala.Tuple2.apply[String, io.circe.Json]("partnerKind", $anon.this.circeGenericEncoderForpartnerKind.apply(circeGenericHListBindingForpartnerKind)), scala.Tuple2.apply[String, io.circe.Json]("weight", $anon.this.circeGenericEncoderForweight.apply(circeGenericHListBindingForweight)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("name"), String, shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForname.tryDecode(c.downField("name")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("logo"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlink.tryDecode(c.downField("logo")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("link"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlink.tryDecode(c.downField("link")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("organisation"), Option[org.make.api.question.OrganisationPartnerResponse], shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFororganisation.tryDecode(c.downField("organisation")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("partnerKind"), org.make.core.partner.PartnerKind, shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpartnerKind.tryDecode(c.downField("partnerKind")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("weight"), Float, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForweight.tryDecode(c.downField("weight")), 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); final override def decodeAccumulating(c: io.circe.HCursor): io.circe.Decoder.AccumulatingResult[shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("name"), String, shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForname.tryDecodeAccumulating(c.downField("name")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("logo"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlink.tryDecodeAccumulating(c.downField("logo")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("link"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlink.tryDecodeAccumulating(c.downField("link")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("organisation"), Option[org.make.api.question.OrganisationPartnerResponse], shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFororganisation.tryDecodeAccumulating(c.downField("organisation")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("partnerKind"), org.make.core.partner.PartnerKind, shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpartnerKind.tryDecodeAccumulating(c.downField("partnerKind")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("weight"), Float, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForweight.tryDecodeAccumulating(c.downField("weight")), 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) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("name"),String] :: shapeless.labelled.FieldType[Symbol @@ String("logo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("link"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("organisation"),Option[org.make.api.question.OrganisationPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("partnerKind"),org.make.core.partner.PartnerKind] :: shapeless.labelled.FieldType[Symbol @@ String("weight"),Float] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$27().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionPartnerResponse]](inst$macro$28) })
207 28364 7626 - 7637 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.OperationOfQuestionHighlightsResponse]({ val inst$macro$20: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.OperationOfQuestionHighlightsResponse] = { final class anon$lazy$macro$19 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$19 = { anon$lazy$macro$19.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.OperationOfQuestionHighlightsResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.OperationOfQuestionHighlightsResponse, shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.OperationOfQuestionHighlightsResponse, (Symbol @@ String("votesTarget")) :: (Symbol @@ String("votesCount")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: shapeless.HNil, Int :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.OperationOfQuestionHighlightsResponse, (Symbol @@ String("votesTarget")) :: (Symbol @@ String("votesCount")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: shapeless.HNil](::.apply[Symbol @@ String("votesTarget"), (Symbol @@ String("votesCount")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: shapeless.HNil.type](scala.Symbol.apply("votesTarget").asInstanceOf[Symbol @@ String("votesTarget")], ::.apply[Symbol @@ String("votesCount"), (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: shapeless.HNil.type](scala.Symbol.apply("votesCount").asInstanceOf[Symbol @@ String("votesCount")], ::.apply[Symbol @@ String("participantsCount"), (Symbol @@ String("proposalsCount")) :: shapeless.HNil.type](scala.Symbol.apply("participantsCount").asInstanceOf[Symbol @@ String("participantsCount")], ::.apply[Symbol @@ String("proposalsCount"), shapeless.HNil.type](scala.Symbol.apply("proposalsCount").asInstanceOf[Symbol @@ String("proposalsCount")], HNil))))), Generic.instance[org.make.api.question.OperationOfQuestionHighlightsResponse, Int :: Int :: Int :: Int :: shapeless.HNil](((x0$3: org.make.api.question.OperationOfQuestionHighlightsResponse) => x0$3 match { case (votesTarget: Int, votesCount: Int, participantsCount: Int, proposalsCount: Int): org.make.api.question.OperationOfQuestionHighlightsResponse((votesTarget$macro$14 @ _), (votesCount$macro$15 @ _), (participantsCount$macro$16 @ _), (proposalsCount$macro$17 @ _)) => ::.apply[Int, Int :: Int :: Int :: shapeless.HNil.type](votesTarget$macro$14, ::.apply[Int, Int :: Int :: shapeless.HNil.type](votesCount$macro$15, ::.apply[Int, Int :: shapeless.HNil.type](participantsCount$macro$16, ::.apply[Int, shapeless.HNil.type](proposalsCount$macro$17, HNil)))).asInstanceOf[Int :: Int :: Int :: Int :: shapeless.HNil] }), ((x0$4: Int :: Int :: Int :: Int :: shapeless.HNil) => x0$4 match { case (head: Int, tail: Int :: Int :: Int :: shapeless.HNil): Int :: Int :: Int :: Int :: shapeless.HNil((votesTarget$macro$10 @ _), (head: Int, tail: Int :: Int :: shapeless.HNil): Int :: Int :: Int :: shapeless.HNil((votesCount$macro$11 @ _), (head: Int, tail: Int :: shapeless.HNil): Int :: Int :: shapeless.HNil((participantsCount$macro$12 @ _), (head: Int, tail: shapeless.HNil): Int :: shapeless.HNil((proposalsCount$macro$13 @ _), HNil)))) => question.this.OperationOfQuestionHighlightsResponse.apply(votesTarget$macro$10, votesCount$macro$11, participantsCount$macro$12, proposalsCount$macro$13) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("votesTarget"), Int, (Symbol @@ String("votesCount")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: shapeless.HNil, Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("votesCount"), Int, (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: shapeless.HNil, Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("participantsCount"), Int, (Symbol @@ String("proposalsCount")) :: shapeless.HNil, Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("proposalsCount"), Int, shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("proposalsCount")]](scala.Symbol.apply("proposalsCount").asInstanceOf[Symbol @@ String("proposalsCount")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("proposalsCount")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("participantsCount")]](scala.Symbol.apply("participantsCount").asInstanceOf[Symbol @@ String("participantsCount")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("participantsCount")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("votesCount")]](scala.Symbol.apply("votesCount").asInstanceOf[Symbol @@ String("votesCount")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("votesCount")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("votesTarget")]](scala.Symbol.apply("votesTarget").asInstanceOf[Symbol @@ String("votesTarget")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("votesTarget")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$19.this.inst$macro$18)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.OperationOfQuestionHighlightsResponse]]; <stable> <accessor> lazy val inst$macro$18: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForproposalsCount: io.circe.Decoder[Int] = circe.this.Decoder.decodeInt; private[this] val circeGenericEncoderForproposalsCount: io.circe.Encoder[Int] = circe.this.Encoder.encodeInt; final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int], tail: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForvotesTarget @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int], tail: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForvotesCount @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int], tail: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForparticipantsCount @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForproposalsCount @ _), shapeless.HNil)))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("votesTarget", $anon.this.circeGenericEncoderForproposalsCount.apply(circeGenericHListBindingForvotesTarget)), scala.Tuple2.apply[String, io.circe.Json]("votesCount", $anon.this.circeGenericEncoderForproposalsCount.apply(circeGenericHListBindingForvotesCount)), scala.Tuple2.apply[String, io.circe.Json]("participantsCount", $anon.this.circeGenericEncoderForproposalsCount.apply(circeGenericHListBindingForparticipantsCount)), scala.Tuple2.apply[String, io.circe.Json]("proposalsCount", $anon.this.circeGenericEncoderForproposalsCount.apply(circeGenericHListBindingForproposalsCount)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("votesTarget"), Int, shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalsCount.tryDecode(c.downField("votesTarget")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("votesCount"), Int, shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalsCount.tryDecode(c.downField("votesCount")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("participantsCount"), Int, shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalsCount.tryDecode(c.downField("participantsCount")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("proposalsCount"), Int, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalsCount.tryDecode(c.downField("proposalsCount")), ReprDecoder.hnilResult)(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("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("votesTarget"), Int, shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalsCount.tryDecodeAccumulating(c.downField("votesTarget")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("votesCount"), Int, shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalsCount.tryDecodeAccumulating(c.downField("votesCount")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("participantsCount"), Int, shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalsCount.tryDecodeAccumulating(c.downField("participantsCount")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("proposalsCount"), Int, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalsCount.tryDecodeAccumulating(c.downField("proposalsCount")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("votesTarget"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$19().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.OperationOfQuestionHighlightsResponse]](inst$macro$20) })
217 29769 7907 - 7918 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.TimelineResponse]({ val inst$macro$16: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.TimelineResponse] = { final class anon$lazy$macro$15 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$15 = { anon$lazy$macro$15.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.TimelineResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.TimelineResponse, shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.TimelineResponse, (Symbol @@ String("action")) :: (Symbol @@ String("result")) :: (Symbol @@ String("workshop")) :: shapeless.HNil, Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.TimelineResponse, (Symbol @@ String("action")) :: (Symbol @@ String("result")) :: (Symbol @@ String("workshop")) :: shapeless.HNil](::.apply[Symbol @@ String("action"), (Symbol @@ String("result")) :: (Symbol @@ String("workshop")) :: shapeless.HNil.type](scala.Symbol.apply("action").asInstanceOf[Symbol @@ String("action")], ::.apply[Symbol @@ String("result"), (Symbol @@ String("workshop")) :: shapeless.HNil.type](scala.Symbol.apply("result").asInstanceOf[Symbol @@ String("result")], ::.apply[Symbol @@ String("workshop"), shapeless.HNil.type](scala.Symbol.apply("workshop").asInstanceOf[Symbol @@ String("workshop")], HNil)))), Generic.instance[org.make.api.question.TimelineResponse, Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil](((x0$3: org.make.api.question.TimelineResponse) => x0$3 match { case (action: Option[org.make.api.question.TimelineElementResponse], result: Option[org.make.api.question.TimelineElementResponse], workshop: Option[org.make.api.question.TimelineElementResponse]): org.make.api.question.TimelineResponse((action$macro$11 @ _), (result$macro$12 @ _), (workshop$macro$13 @ _)) => ::.apply[Option[org.make.api.question.TimelineElementResponse], Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil.type](action$macro$11, ::.apply[Option[org.make.api.question.TimelineElementResponse], Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil.type](result$macro$12, ::.apply[Option[org.make.api.question.TimelineElementResponse], shapeless.HNil.type](workshop$macro$13, HNil))).asInstanceOf[Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil] }), ((x0$4: Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil) => x0$4 match { case (head: Option[org.make.api.question.TimelineElementResponse], tail: Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil): Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil((action$macro$8 @ _), (head: Option[org.make.api.question.TimelineElementResponse], tail: Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil): Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil((result$macro$9 @ _), (head: Option[org.make.api.question.TimelineElementResponse], tail: shapeless.HNil): Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil((workshop$macro$10 @ _), HNil))) => question.this.TimelineResponse.apply(action$macro$8, result$macro$9, workshop$macro$10) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("action"), Option[org.make.api.question.TimelineElementResponse], (Symbol @@ String("result")) :: (Symbol @@ String("workshop")) :: shapeless.HNil, Option[org.make.api.question.TimelineElementResponse] :: Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("result"), Option[org.make.api.question.TimelineElementResponse], (Symbol @@ String("workshop")) :: shapeless.HNil, Option[org.make.api.question.TimelineElementResponse] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("workshop"), Option[org.make.api.question.TimelineElementResponse], shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("workshop")]](scala.Symbol.apply("workshop").asInstanceOf[Symbol @@ String("workshop")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("workshop")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("result")]](scala.Symbol.apply("result").asInstanceOf[Symbol @@ String("result")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("result")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("action")]](scala.Symbol.apply("action").asInstanceOf[Symbol @@ String("action")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("action")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$15.this.inst$macro$14)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.TimelineResponse]]; <stable> <accessor> lazy val inst$macro$14: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForworkshop: io.circe.Decoder[Option[org.make.api.question.TimelineElementResponse]] = circe.this.Decoder.decodeOption[org.make.api.question.TimelineElementResponse](question.this.TimelineElementResponse.codec); private[this] val circeGenericEncoderForworkshop: io.circe.Encoder[Option[org.make.api.question.TimelineElementResponse]] = circe.this.Encoder.encodeOption[org.make.api.question.TimelineElementResponse](question.this.TimelineElementResponse.codec); final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]], tail: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForaction @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]], tail: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForresult @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForworkshop @ _), shapeless.HNil))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("action", $anon.this.circeGenericEncoderForworkshop.apply(circeGenericHListBindingForaction)), scala.Tuple2.apply[String, io.circe.Json]("result", $anon.this.circeGenericEncoderForworkshop.apply(circeGenericHListBindingForresult)), scala.Tuple2.apply[String, io.circe.Json]("workshop", $anon.this.circeGenericEncoderForworkshop.apply(circeGenericHListBindingForworkshop)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("action"), Option[org.make.api.question.TimelineElementResponse], shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForworkshop.tryDecode(c.downField("action")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("result"), Option[org.make.api.question.TimelineElementResponse], shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForworkshop.tryDecode(c.downField("result")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("workshop"), Option[org.make.api.question.TimelineElementResponse], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForworkshop.tryDecode(c.downField("workshop")), ReprDecoder.hnilResult)(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("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("action"), Option[org.make.api.question.TimelineElementResponse], shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForworkshop.tryDecodeAccumulating(c.downField("action")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("result"), Option[org.make.api.question.TimelineElementResponse], shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForworkshop.tryDecodeAccumulating(c.downField("result")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("workshop"), Option[org.make.api.question.TimelineElementResponse], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForworkshop.tryDecodeAccumulating(c.downField("workshop")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("action"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("result"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("workshop"),Option[org.make.api.question.TimelineElementResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$15().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.TimelineResponse]](inst$macro$16) })
223 28836 8132 - 8143 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.TimelineElementResponse]({ val inst$macro$16: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.TimelineElementResponse] = { final class anon$lazy$macro$15 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$15 = { anon$lazy$macro$15.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.TimelineElementResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.TimelineElementResponse, shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.TimelineElementResponse, (Symbol @@ String("date")) :: (Symbol @@ String("dateText")) :: (Symbol @@ String("description")) :: shapeless.HNil, java.time.LocalDate :: String :: String :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.TimelineElementResponse, (Symbol @@ String("date")) :: (Symbol @@ String("dateText")) :: (Symbol @@ String("description")) :: shapeless.HNil](::.apply[Symbol @@ String("date"), (Symbol @@ String("dateText")) :: (Symbol @@ String("description")) :: shapeless.HNil.type](scala.Symbol.apply("date").asInstanceOf[Symbol @@ String("date")], ::.apply[Symbol @@ String("dateText"), (Symbol @@ String("description")) :: shapeless.HNil.type](scala.Symbol.apply("dateText").asInstanceOf[Symbol @@ String("dateText")], ::.apply[Symbol @@ String("description"), shapeless.HNil.type](scala.Symbol.apply("description").asInstanceOf[Symbol @@ String("description")], HNil)))), Generic.instance[org.make.api.question.TimelineElementResponse, java.time.LocalDate :: String :: String :: shapeless.HNil](((x0$3: org.make.api.question.TimelineElementResponse) => x0$3 match { case (date: java.time.LocalDate, dateText: String, description: String): org.make.api.question.TimelineElementResponse((date$macro$11 @ _), (dateText$macro$12 @ _), (description$macro$13 @ _)) => ::.apply[java.time.LocalDate, String :: String :: shapeless.HNil.type](date$macro$11, ::.apply[String, String :: shapeless.HNil.type](dateText$macro$12, ::.apply[String, shapeless.HNil.type](description$macro$13, HNil))).asInstanceOf[java.time.LocalDate :: String :: String :: shapeless.HNil] }), ((x0$4: java.time.LocalDate :: String :: String :: shapeless.HNil) => x0$4 match { case (head: java.time.LocalDate, tail: String :: String :: shapeless.HNil): java.time.LocalDate :: String :: String :: shapeless.HNil((date$macro$8 @ _), (head: String, tail: String :: shapeless.HNil): String :: String :: shapeless.HNil((dateText$macro$9 @ _), (head: String, tail: shapeless.HNil): String :: shapeless.HNil((description$macro$10 @ _), HNil))) => question.this.TimelineElementResponse.apply(date$macro$8, dateText$macro$9, description$macro$10) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("date"), java.time.LocalDate, (Symbol @@ String("dateText")) :: (Symbol @@ String("description")) :: shapeless.HNil, String :: String :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("dateText"), String, (Symbol @@ String("description")) :: shapeless.HNil, String :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("description"), String, shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("description")]](scala.Symbol.apply("description").asInstanceOf[Symbol @@ String("description")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("description")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("dateText")]](scala.Symbol.apply("dateText").asInstanceOf[Symbol @@ String("dateText")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("dateText")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("date")]](scala.Symbol.apply("date").asInstanceOf[Symbol @@ String("date")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("date")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$15.this.inst$macro$14)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.TimelineElementResponse]]; <stable> <accessor> lazy val inst$macro$14: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderFordate: io.circe.Decoder[java.time.LocalDate] = TimelineElementResponse.this.localDateDecoder; private[this] val circeGenericDecoderFordescription: io.circe.Decoder[String] = circe.this.Decoder.decodeString; private[this] val circeGenericEncoderFordate: io.circe.Encoder[java.time.LocalDate] = TimelineElementResponse.this.localDateEncoder; private[this] val circeGenericEncoderFordescription: io.circe.Encoder[String] = circe.this.Encoder.encodeString; final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate], tail: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordate @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordateText @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("description"),String], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordescription @ _), shapeless.HNil))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("date", $anon.this.circeGenericEncoderFordate.apply(circeGenericHListBindingFordate)), scala.Tuple2.apply[String, io.circe.Json]("dateText", $anon.this.circeGenericEncoderFordescription.apply(circeGenericHListBindingFordateText)), scala.Tuple2.apply[String, io.circe.Json]("description", $anon.this.circeGenericEncoderFordescription.apply(circeGenericHListBindingFordescription)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("date"), java.time.LocalDate, shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordate.tryDecode(c.downField("date")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("dateText"), String, shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescription.tryDecode(c.downField("dateText")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("description"), String, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescription.tryDecode(c.downField("description")), ReprDecoder.hnilResult)(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("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("date"), java.time.LocalDate, shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordate.tryDecodeAccumulating(c.downField("date")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("dateText"), String, shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescription.tryDecodeAccumulating(c.downField("dateText")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("description"), String, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescription.tryDecodeAccumulating(c.downField("description")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("date"),java.time.LocalDate] :: shapeless.labelled.FieldType[Symbol @@ String("dateText"),String] :: shapeless.labelled.FieldType[Symbol @@ String("description"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$15().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.TimelineElementResponse]](inst$macro$16) })
300 30272 11473 - 15414 Apply org.make.api.question.QuestionDetailsResponse.apply QuestionDetailsResponse.apply(question.questionId, operation.operationId, preferredLanguage, returnedLanguage, WordingResponse.apply(operationOfQuestion.operationTitles.getTranslationUnsafe(returnedLanguage), question.questions.getTranslationUnsafe(returnedLanguage), operationOfQuestion.descriptions.flatMap[String](((x$9: org.make.core.technical.Multilingual[String]) => x$9.getTranslation(returnedLanguage))), MetasResponse.apply(operationOfQuestion.metas, returnedLanguage)), question.questions.getTranslationUnsafe(returnedLanguage), question.shortTitles.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((x$10: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]) => x$10.getTranslation(returnedLanguage))), question.slug, question.countries, question.languages, operationOfQuestion.startDate, operationOfQuestion.endDate, operationOfQuestion.canPropose, operationOfQuestion.proposalPrefixes.getTranslationUnsafe(returnedLanguage), operation.operationKind, SequenceCardsConfigurationResponse.apply(operationOfQuestion.sequenceCardsConfiguration, returnedLanguage), operationOfQuestion.aboutUrls.flatMap[String](((x$11: org.make.core.technical.Multilingual[String]) => x$11.getTranslation(returnedLanguage))), partners.map[org.make.api.question.QuestionPartnerResponse](((p: org.make.core.partner.Partner) => QuestionPartnerResponse.apply(p, organisations.find(((o: org.make.core.user.User) => p.organisationId.contains[org.make.core.user.UserId](o.userId)))))), QuestionThemeResponse.fromQuestionTheme(operationOfQuestion.theme), operationOfQuestion.consultationImages.flatMap[String](((x$12: org.make.core.technical.Multilingual[String]) => x$12.getTranslation(returnedLanguage))), operationOfQuestion.consultationImageAlts.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]](((x$13: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]]) => x$13.getTranslation(returnedLanguage))), operationOfQuestion.descriptionImages.flatMap[String](((x$14: org.make.core.technical.Multilingual[String]) => x$14.getTranslation(returnedLanguage))), operationOfQuestion.descriptionImageAlts.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]](((x$15: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]]) => x$15.getTranslation(returnedLanguage))), operationOfQuestion.cobrandingLogo, operationOfQuestion.cobrandingLogoAlt, operationOfQuestion.resultsLink.isDefined, operationOfQuestion.reportUrl, operationOfQuestion.actionsUrl, activeFeatures, operationOfQuestion.featured, OperationOfQuestionHighlightsResponse.apply(operationOfQuestion.votesTarget, operationOfQuestion.votesCount, operationOfQuestion.participantsCount, operationOfQuestion.proposalsCount), TimelineResponse.apply(operationOfQuestion.timeline.action.map[org.make.api.question.TimelineElementResponse](((action: org.make.core.operation.TimelineElement) => TimelineElementResponse.apply(action.date, action.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$16: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$16.value)), action.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$17: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$17.value))))), operationOfQuestion.timeline.result.map[org.make.api.question.TimelineElementResponse](((result: org.make.core.operation.TimelineElement) => TimelineElementResponse.apply(result.date, result.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$18: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$18.value)), result.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$19.value))))), operationOfQuestion.timeline.workshop.map[org.make.api.question.TimelineElementResponse](((workshop: org.make.core.operation.TimelineElement) => TimelineElementResponse.apply(workshop.date, workshop.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$20.value)), workshop.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$21: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$21.value)))))), controversyCount, topProposalCount, activeFeatureData, demographicsCardCount.>(0), demographicsCardCount, operationOfQuestion.resultsLink.map[String]({ <synthetic> val eta$0$1: cats.Show[org.make.core.operation.ResultsLink] = cats.Show.apply[org.make.core.operation.ResultsLink](operation.this.ResultsLink.resultsLinkShow); ((t: org.make.core.operation.ResultsLink) => eta$0$1.show(t)) }))
301 30257 11515 - 11534 Select org.make.core.question.Question.questionId question.questionId
302 29867 11554 - 11575 Select org.make.core.operation.Operation.operationId operation.operationId
305 28933 11675 - 12034 Apply org.make.api.question.WordingResponse.apply WordingResponse.apply(operationOfQuestion.operationTitles.getTranslationUnsafe(returnedLanguage), question.questions.getTranslationUnsafe(returnedLanguage), operationOfQuestion.descriptions.flatMap[String](((x$9: org.make.core.technical.Multilingual[String]) => x$9.getTranslation(returnedLanguage))), MetasResponse.apply(operationOfQuestion.metas, returnedLanguage))
306 28981 11706 - 11780 Apply org.make.core.technical.Multilingual.getTranslationUnsafe operationOfQuestion.operationTitles.getTranslationUnsafe(returnedLanguage)
307 30441 11799 - 11856 Apply org.make.core.technical.Multilingual.getTranslationUnsafe question.questions.getTranslationUnsafe(returnedLanguage)
308 29579 11919 - 11953 Apply org.make.core.technical.Multilingual.getTranslation x$9.getTranslation(returnedLanguage)
308 28759 11878 - 11954 Apply scala.Option.flatMap operationOfQuestion.descriptions.flatMap[String](((x$9: org.make.core.technical.Multilingual[String]) => x$9.getTranslation(returnedLanguage)))
309 29693 11970 - 12028 Apply org.make.api.question.MetasResponse.apply MetasResponse.apply(operationOfQuestion.metas, returnedLanguage)
309 28369 11984 - 12009 Select org.make.core.operation.OperationOfQuestion.metas operationOfQuestion.metas
311 30265 12051 - 12108 Apply org.make.core.technical.Multilingual.getTranslationUnsafe question.questions.getTranslationUnsafe(returnedLanguage)
312 29829 12156 - 12190 Apply org.make.core.technical.Multilingual.getTranslation x$10.getTranslation(returnedLanguage)
312 28991 12127 - 12191 Apply scala.Option.flatMap question.shortTitles.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((x$10: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]) => x$10.getTranslation(returnedLanguage)))
313 30409 12204 - 12217 Select org.make.core.question.Question.slug question.slug
314 29555 12235 - 12253 Select org.make.core.question.Question.countries question.countries
315 28768 12271 - 12289 Select org.make.core.question.Question.languages question.languages
316 28263 12307 - 12336 Select org.make.core.operation.OperationOfQuestion.startDate operationOfQuestion.startDate
317 29700 12352 - 12379 Select org.make.core.operation.OperationOfQuestion.endDate operationOfQuestion.endDate
318 28827 12398 - 12428 Select org.make.core.operation.OperationOfQuestion.canPropose operationOfQuestion.canPropose
319 30229 12451 - 12526 Apply org.make.core.technical.Multilingual.getTranslationUnsafe operationOfQuestion.proposalPrefixes.getTranslationUnsafe(returnedLanguage)
320 29833 12548 - 12571 Select org.make.core.operation.Operation.operationKind operation.operationKind
322 30384 12600 - 12706 Apply org.make.api.question.SequenceCardsConfigurationResponse.apply SequenceCardsConfigurationResponse.apply(operationOfQuestion.sequenceCardsConfiguration, returnedLanguage)
322 28996 12641 - 12687 Select org.make.core.operation.OperationOfQuestion.sequenceCardsConfiguration operationOfQuestion.sequenceCardsConfiguration
323 28725 12723 - 12796 Apply scala.Option.flatMap operationOfQuestion.aboutUrls.flatMap[String](((x$11: org.make.core.technical.Multilingual[String]) => x$11.getTranslation(returnedLanguage)))
323 29514 12761 - 12795 Apply org.make.core.technical.Multilingual.getTranslation x$11.getTranslation(returnedLanguage)
325 28924 12864 - 12924 Apply scala.collection.IterableOnceOps.find organisations.find(((o: org.make.core.user.User) => p.organisationId.contains[org.make.core.user.UserId](o.userId)))
325 30198 12837 - 12925 Apply org.make.api.question.QuestionPartnerResponse.apply QuestionPartnerResponse.apply(p, organisations.find(((o: org.make.core.user.User) => p.organisationId.contains[org.make.core.user.UserId](o.userId))))
325 29369 12819 - 12926 Apply scala.collection.IterableOps.map partners.map[org.make.api.question.QuestionPartnerResponse](((p: org.make.core.partner.Partner) => QuestionPartnerResponse.apply(p, organisations.find(((o: org.make.core.user.User) => p.organisationId.contains[org.make.core.user.UserId](o.userId))))))
325 29704 12888 - 12923 Apply scala.Option.contains p.organisationId.contains[org.make.core.user.UserId](o.userId)
325 28267 12914 - 12922 Select org.make.core.user.User.userId o.userId
326 30387 12940 - 13006 Apply org.make.api.question.QuestionThemeResponse.fromQuestionTheme QuestionThemeResponse.fromQuestionTheme(operationOfQuestion.theme)
326 28961 12980 - 13005 Select org.make.core.operation.OperationOfQuestion.theme operationOfQuestion.theme
327 28679 13032 - 13114 Apply scala.Option.flatMap operationOfQuestion.consultationImages.flatMap[String](((x$12: org.make.core.technical.Multilingual[String]) => x$12.getTranslation(returnedLanguage)))
327 29617 13079 - 13113 Apply org.make.core.technical.Multilingual.getTranslation x$12.getTranslation(returnedLanguage)
328 28269 13193 - 13227 Apply org.make.core.technical.Multilingual.getTranslation x$13.getTranslation(returnedLanguage)
328 29662 13143 - 13228 Apply scala.Option.flatMap operationOfQuestion.consultationImageAlts.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]](((x$13: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]]) => x$13.getTranslation(returnedLanguage)))
329 28930 13299 - 13333 Apply org.make.core.technical.Multilingual.getTranslation x$14.getTranslation(returnedLanguage)
329 30305 13253 - 13334 Apply scala.Option.flatMap operationOfQuestion.descriptionImages.flatMap[String](((x$14: org.make.core.technical.Multilingual[String]) => x$14.getTranslation(returnedLanguage)))
330 29462 13411 - 13445 Apply org.make.core.technical.Multilingual.getTranslation x$15.getTranslation(returnedLanguage)
330 28964 13362 - 13446 Apply scala.Option.flatMap operationOfQuestion.descriptionImageAlts.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]](((x$15: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]]) => x$15.getTranslation(returnedLanguage)))
331 30424 13469 - 13503 Select org.make.core.operation.OperationOfQuestion.cobrandingLogo operationOfQuestion.cobrandingLogo
332 29621 13529 - 13566 Select org.make.core.operation.OperationOfQuestion.cobrandingLogoAlt operationOfQuestion.cobrandingLogoAlt
333 28715 13589 - 13630 Select scala.Option.isDefined operationOfQuestion.resultsLink.isDefined
334 28332 13648 - 13677 Select org.make.core.operation.OperationOfQuestion.reportUrl operationOfQuestion.reportUrl
335 29665 13696 - 13726 Select org.make.core.operation.OperationOfQuestion.actionsUrl operationOfQuestion.actionsUrl
337 28905 13780 - 13808 Select org.make.core.operation.OperationOfQuestion.featured operationOfQuestion.featured
338 29585 13827 - 14098 Apply org.make.api.question.OperationOfQuestionHighlightsResponse.apply OperationOfQuestionHighlightsResponse.apply(operationOfQuestion.votesTarget, operationOfQuestion.votesCount, operationOfQuestion.participantsCount, operationOfQuestion.proposalsCount)
339 30309 13886 - 13917 Select org.make.core.operation.OperationOfQuestion.votesTarget operationOfQuestion.votesTarget
340 29467 13938 - 13968 Select org.make.core.operation.OperationOfQuestion.votesCount operationOfQuestion.votesCount
341 29036 13996 - 14033 Select org.make.core.operation.OperationOfQuestion.participantsCount operationOfQuestion.participantsCount
342 30425 14058 - 14092 Select org.make.core.operation.OperationOfQuestion.proposalsCount operationOfQuestion.proposalsCount
344 28801 14115 - 15106 Apply org.make.api.question.TimelineResponse.apply TimelineResponse.apply(operationOfQuestion.timeline.action.map[org.make.api.question.TimelineElementResponse](((action: org.make.core.operation.TimelineElement) => TimelineElementResponse.apply(action.date, action.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$16: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$16.value)), action.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$17: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$17.value))))), operationOfQuestion.timeline.result.map[org.make.api.question.TimelineElementResponse](((result: org.make.core.operation.TimelineElement) => TimelineElementResponse.apply(result.date, result.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$18: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$18.value)), result.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$19.value))))), operationOfQuestion.timeline.workshop.map[org.make.api.question.TimelineElementResponse](((workshop: org.make.core.operation.TimelineElement) => TimelineElementResponse.apply(workshop.date, workshop.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$20.value)), workshop.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$21: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$21.value))))))
345 29591 14148 - 14450 Apply scala.Option.map operationOfQuestion.timeline.action.map[org.make.api.question.TimelineElementResponse](((action: org.make.core.operation.TimelineElement) => TimelineElementResponse.apply(action.date, action.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$16: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$16.value)), action.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$17: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$17.value)))))
347 30341 14217 - 14442 Apply org.make.api.question.TimelineElementResponse.apply TimelineElementResponse.apply(action.date, action.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$16: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$16.value)), action.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$17: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$17.value)))
348 28720 14254 - 14265 Select org.make.core.operation.TimelineElement.date action.date
349 30164 14334 - 14336 Literal <nosymbol> ""
349 29652 14338 - 14345 Select eu.timepit.refined.api.Refined.value x$16.value
349 28907 14279 - 14346 Apply scala.Option.fold action.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$16: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$16.value))
350 29426 14422 - 14429 Select eu.timepit.refined.api.Refined.value x$17.value
350 30233 14418 - 14420 Literal <nosymbol> ""
350 29042 14360 - 14430 Apply scala.Option.fold action.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$17: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$17.value))
353 29620 14467 - 14769 Apply scala.Option.map operationOfQuestion.timeline.result.map[org.make.api.question.TimelineElementResponse](((result: org.make.core.operation.TimelineElement) => TimelineElementResponse.apply(result.date, result.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$18: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$18.value)), result.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$19.value)))))
355 30348 14536 - 14761 Apply org.make.api.question.TimelineElementResponse.apply TimelineElementResponse.apply(result.date, result.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$18: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$18.value)), result.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$19.value)))
356 28729 14573 - 14584 Select org.make.core.operation.TimelineElement.date result.date
357 29658 14657 - 14664 Select eu.timepit.refined.api.Refined.value x$18.value
357 28835 14598 - 14665 Apply scala.Option.fold result.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$18: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$18.value))
357 30136 14653 - 14655 Literal <nosymbol> ""
358 28551 14679 - 14749 Apply scala.Option.fold result.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$19.value))
358 29436 14741 - 14748 Select eu.timepit.refined.api.Refined.value x$19.value
358 30211 14737 - 14739 Literal <nosymbol> ""
361 29583 14788 - 15100 Apply scala.Option.map operationOfQuestion.timeline.workshop.map[org.make.api.question.TimelineElementResponse](((workshop: org.make.core.operation.TimelineElement) => TimelineElementResponse.apply(workshop.date, workshop.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$20.value)), workshop.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$21: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$21.value)))))
363 30352 14861 - 15092 Apply org.make.api.question.TimelineElementResponse.apply TimelineElementResponse.apply(workshop.date, workshop.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$20.value)), workshop.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$21: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$21.value)))
364 28695 14898 - 14911 Select org.make.core.operation.TimelineElement.date workshop.date
365 29771 14986 - 14993 Select eu.timepit.refined.api.Refined.value x$20.value
365 28841 14925 - 14994 Apply scala.Option.fold workshop.dateTexts.getTranslation(returnedLanguage).fold[String]("")(((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(20)]]) => x$20.value))
365 30141 14982 - 14984 Literal <nosymbol> ""
366 29394 15072 - 15079 Select eu.timepit.refined.api.Refined.value x$21.value
366 30306 15068 - 15070 Literal <nosymbol> ""
366 28556 15008 - 15080 Apply scala.Option.fold workshop.descriptions.getTranslation(returnedLanguage).fold[String]("")(((x$21: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(150)]]) => x$21.value))
373 30180 15255 - 15280 Apply scala.Int.> demographicsCardCount.>(0)
375 28847 15351 - 15410 Apply scala.Option.map operationOfQuestion.resultsLink.map[String]({ <synthetic> val eta$0$1: cats.Show[org.make.core.operation.ResultsLink] = cats.Show.apply[org.make.core.operation.ResultsLink](operation.this.ResultsLink.resultsLinkShow); ((t: org.make.core.operation.ResultsLink) => eta$0$1.show(t)) })
375 29774 15387 - 15409 Apply cats.Show.ContravariantShow.show eta$0$1.show(t)
378 29496 15471 - 15482 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.QuestionDetailsResponse]({ val inst$macro$82: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionDetailsResponse] = { final class anon$lazy$macro$81 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$81 = { anon$lazy$macro$81.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionDetailsResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.QuestionDetailsResponse, shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.QuestionDetailsResponse, (Symbol @@ String("questionId")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("wording")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, org.make.core.question.QuestionId :: org.make.core.operation.OperationId :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.QuestionDetailsResponse, (Symbol @@ String("questionId")) :: (Symbol @@ String("operationId")) :: (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("wording")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil](::.apply[Symbol @@ String("questionId"), (Symbol @@ String("operationId")) :: (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("wording")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("questionId").asInstanceOf[Symbol @@ String("questionId")], ::.apply[Symbol @@ String("operationId"), (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("wording")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("operationId").asInstanceOf[Symbol @@ String("operationId")], ::.apply[Symbol @@ String("preferredLanguage"), (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("wording")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("preferredLanguage").asInstanceOf[Symbol @@ String("preferredLanguage")], ::.apply[Symbol @@ String("returnedLanguage"), (Symbol @@ String("wording")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("returnedLanguage").asInstanceOf[Symbol @@ String("returnedLanguage")], ::.apply[Symbol @@ String("wording"), (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("wording").asInstanceOf[Symbol @@ String("wording")], ::.apply[Symbol @@ String("question"), (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("question").asInstanceOf[Symbol @@ String("question")], ::.apply[Symbol @@ String("shortTitle"), (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("shortTitle").asInstanceOf[Symbol @@ String("shortTitle")], ::.apply[Symbol @@ String("slug"), (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("slug").asInstanceOf[Symbol @@ String("slug")], ::.apply[Symbol @@ String("countries"), (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("countries").asInstanceOf[Symbol @@ String("countries")], ::.apply[Symbol @@ String("languages"), (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("languages").asInstanceOf[Symbol @@ String("languages")], ::.apply[Symbol @@ String("startDate"), (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("startDate").asInstanceOf[Symbol @@ String("startDate")], ::.apply[Symbol @@ String("endDate"), (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("endDate").asInstanceOf[Symbol @@ String("endDate")], ::.apply[Symbol @@ String("canPropose"), (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("canPropose").asInstanceOf[Symbol @@ String("canPropose")], ::.apply[Symbol @@ String("proposalPrefix"), (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("proposalPrefix").asInstanceOf[Symbol @@ String("proposalPrefix")], ::.apply[Symbol @@ String("operationKind"), (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("operationKind").asInstanceOf[Symbol @@ String("operationKind")], ::.apply[Symbol @@ String("sequenceConfig"), (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("sequenceConfig").asInstanceOf[Symbol @@ String("sequenceConfig")], ::.apply[Symbol @@ String("aboutUrl"), (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("aboutUrl").asInstanceOf[Symbol @@ String("aboutUrl")], ::.apply[Symbol @@ String("partners"), (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("partners").asInstanceOf[Symbol @@ String("partners")], ::.apply[Symbol @@ String("theme"), (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("theme").asInstanceOf[Symbol @@ String("theme")], ::.apply[Symbol @@ String("consultationImage"), (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("consultationImage").asInstanceOf[Symbol @@ String("consultationImage")], ::.apply[Symbol @@ String("consultationImageAlt"), (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("consultationImageAlt").asInstanceOf[Symbol @@ String("consultationImageAlt")], ::.apply[Symbol @@ String("descriptionImage"), (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("descriptionImage").asInstanceOf[Symbol @@ String("descriptionImage")], ::.apply[Symbol @@ String("descriptionImageAlt"), (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("descriptionImageAlt").asInstanceOf[Symbol @@ String("descriptionImageAlt")], ::.apply[Symbol @@ String("cobrandingLogo"), (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("cobrandingLogo").asInstanceOf[Symbol @@ String("cobrandingLogo")], ::.apply[Symbol @@ String("cobrandingLogoAlt"), (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("cobrandingLogoAlt").asInstanceOf[Symbol @@ String("cobrandingLogoAlt")], ::.apply[Symbol @@ String("displayResults"), (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("displayResults").asInstanceOf[Symbol @@ String("displayResults")], ::.apply[Symbol @@ String("reportUrl"), (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("reportUrl").asInstanceOf[Symbol @@ String("reportUrl")], ::.apply[Symbol @@ String("actionsUrl"), (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("actionsUrl").asInstanceOf[Symbol @@ String("actionsUrl")], ::.apply[Symbol @@ String("activeFeatures"), (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("activeFeatures").asInstanceOf[Symbol @@ String("activeFeatures")], ::.apply[Symbol @@ String("featured"), (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("featured").asInstanceOf[Symbol @@ String("featured")], ::.apply[Symbol @@ String("highlights"), (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("highlights").asInstanceOf[Symbol @@ String("highlights")], ::.apply[Symbol @@ String("timeline"), (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("timeline").asInstanceOf[Symbol @@ String("timeline")], ::.apply[Symbol @@ String("controversyCount"), (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("controversyCount").asInstanceOf[Symbol @@ String("controversyCount")], ::.apply[Symbol @@ String("topProposalCount"), (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("topProposalCount").asInstanceOf[Symbol @@ String("topProposalCount")], ::.apply[Symbol @@ String("activeFeatureData"), (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("activeFeatureData").asInstanceOf[Symbol @@ String("activeFeatureData")], ::.apply[Symbol @@ String("hasDemographics"), (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("hasDemographics").asInstanceOf[Symbol @@ String("hasDemographics")], ::.apply[Symbol @@ String("demographicsCardCount"), (Symbol @@ String("resultsLink")) :: shapeless.HNil.type](scala.Symbol.apply("demographicsCardCount").asInstanceOf[Symbol @@ String("demographicsCardCount")], ::.apply[Symbol @@ String("resultsLink"), shapeless.HNil.type](scala.Symbol.apply("resultsLink").asInstanceOf[Symbol @@ String("resultsLink")], HNil))))))))))))))))))))))))))))))))))))))), Generic.instance[org.make.api.question.QuestionDetailsResponse, org.make.core.question.QuestionId :: org.make.core.operation.OperationId :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil](((x0$3: org.make.api.question.QuestionDetailsResponse) => x0$3 match { case (x$macro$79 @ _) => ::.apply[org.make.core.question.QuestionId, org.make.core.operation.OperationId :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.questionId, ::.apply[org.make.core.operation.OperationId, Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.operationId, ::.apply[Option[org.make.core.reference.Language], org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.preferredLanguage, ::.apply[org.make.core.reference.Language, org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.returnedLanguage, ::.apply[org.make.api.question.WordingResponse, eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.wording, ::.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.question, ::.apply[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.shortTitle, ::.apply[String, cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.slug, ::.apply[cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.countries, ::.apply[cats.data.NonEmptyList[org.make.core.reference.Language], java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.languages, ::.apply[java.time.ZonedDateTime, java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.startDate, ::.apply[java.time.ZonedDateTime, Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.endDate, ::.apply[Boolean, String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.canPropose, ::.apply[String, org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.proposalPrefix, ::.apply[org.make.core.operation.OperationKind, org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.operationKind, ::.apply[org.make.api.question.SequenceCardsConfigurationResponse, Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.sequenceConfig, ::.apply[Option[String], Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.aboutUrl, ::.apply[Seq[org.make.api.question.QuestionPartnerResponse], org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.partners, ::.apply[org.make.api.question.QuestionThemeResponse, Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.theme, ::.apply[Option[String], Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.consultationImage, ::.apply[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.consultationImageAlt, ::.apply[Option[String], Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.descriptionImage, ::.apply[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.descriptionImageAlt, ::.apply[Option[String], Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.cobrandingLogo, ::.apply[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.cobrandingLogoAlt, ::.apply[Boolean, Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.displayResults, ::.apply[Option[String], Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.reportUrl, ::.apply[Option[String], Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.actionsUrl, ::.apply[Seq[org.make.core.feature.FeatureSlug], Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.activeFeatures, ::.apply[Boolean, org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.featured, ::.apply[org.make.api.question.OperationOfQuestionHighlightsResponse, org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.highlights, ::.apply[org.make.api.question.TimelineResponse, Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.timeline, ::.apply[Long, Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.controversyCount, ::.apply[Long, org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.topProposalCount, ::.apply[org.make.api.question.ActiveFeatureData, Boolean :: Int :: Option[String] :: shapeless.HNil.type](x$macro$79.activeFeatureData, ::.apply[Boolean, Int :: Option[String] :: shapeless.HNil.type](x$macro$79.hasDemographics, ::.apply[Int, Option[String] :: shapeless.HNil.type](x$macro$79.demographicsCardCount, ::.apply[Option[String], shapeless.HNil.type](x$macro$79.resultsLink, HNil)))))))))))))))))))))))))))))))))))))).asInstanceOf[org.make.core.question.QuestionId :: org.make.core.operation.OperationId :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil] }), ((x0$4: org.make.core.question.QuestionId :: org.make.core.operation.OperationId :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil) => x0$4 match { case (head: org.make.core.question.QuestionId, tail: org.make.core.operation.OperationId :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): org.make.core.question.QuestionId :: org.make.core.operation.OperationId :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((questionId$macro$41 @ _), (head: org.make.core.operation.OperationId, tail: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): org.make.core.operation.OperationId :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((operationId$macro$42 @ _), (head: Option[org.make.core.reference.Language], tail: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((preferredLanguage$macro$43 @ _), (head: org.make.core.reference.Language, tail: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((returnedLanguage$macro$44 @ _), (head: org.make.api.question.WordingResponse, tail: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((wording$macro$45 @ _), (head: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], tail: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((question$macro$46 @ _), (head: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], tail: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((shortTitle$macro$47 @ _), (head: String, tail: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((slug$macro$48 @ _), (head: cats.data.NonEmptyList[org.make.core.reference.Country], tail: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((countries$macro$49 @ _), (head: cats.data.NonEmptyList[org.make.core.reference.Language], tail: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((languages$macro$50 @ _), (head: java.time.ZonedDateTime, tail: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((startDate$macro$51 @ _), (head: java.time.ZonedDateTime, tail: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((endDate$macro$52 @ _), (head: Boolean, tail: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((canPropose$macro$53 @ _), (head: String, tail: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((proposalPrefix$macro$54 @ _), (head: org.make.core.operation.OperationKind, tail: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((operationKind$macro$55 @ _), (head: org.make.api.question.SequenceCardsConfigurationResponse, tail: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((sequenceConfig$macro$56 @ _), (head: Option[String], tail: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((aboutUrl$macro$57 @ _), (head: Seq[org.make.api.question.QuestionPartnerResponse], tail: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((partners$macro$58 @ _), (head: org.make.api.question.QuestionThemeResponse, tail: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((theme$macro$59 @ _), (head: Option[String], tail: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((consultationImage$macro$60 @ _), (head: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], tail: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((consultationImageAlt$macro$61 @ _), (head: Option[String], tail: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((descriptionImage$macro$62 @ _), (head: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], tail: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((descriptionImageAlt$macro$63 @ _), (head: Option[String], tail: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((cobrandingLogo$macro$64 @ _), (head: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], tail: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((cobrandingLogoAlt$macro$65 @ _), (head: Boolean, tail: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((displayResults$macro$66 @ _), (head: Option[String], tail: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((reportUrl$macro$67 @ _), (head: Option[String], tail: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((actionsUrl$macro$68 @ _), (head: Seq[org.make.core.feature.FeatureSlug], tail: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((activeFeatures$macro$69 @ _), (head: Boolean, tail: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((featured$macro$70 @ _), (head: org.make.api.question.OperationOfQuestionHighlightsResponse, tail: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((highlights$macro$71 @ _), (head: org.make.api.question.TimelineResponse, tail: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((timeline$macro$72 @ _), (head: Long, tail: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((controversyCount$macro$73 @ _), (head: Long, tail: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil): Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((topProposalCount$macro$74 @ _), (head: org.make.api.question.ActiveFeatureData, tail: Boolean :: Int :: Option[String] :: shapeless.HNil): org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil((activeFeatureData$macro$75 @ _), (head: Boolean, tail: Int :: Option[String] :: shapeless.HNil): Boolean :: Int :: Option[String] :: shapeless.HNil((hasDemographics$macro$76 @ _), (head: Int, tail: Option[String] :: shapeless.HNil): Int :: Option[String] :: shapeless.HNil((demographicsCardCount$macro$77 @ _), (head: Option[String], tail: shapeless.HNil): Option[String] :: shapeless.HNil((resultsLink$macro$78 @ _), HNil)))))))))))))))))))))))))))))))))))))) => question.this.QuestionDetailsResponse.apply(questionId$macro$41, operationId$macro$42, preferredLanguage$macro$43, returnedLanguage$macro$44, wording$macro$45, question$macro$46, shortTitle$macro$47, slug$macro$48, countries$macro$49, languages$macro$50, startDate$macro$51, endDate$macro$52, canPropose$macro$53, proposalPrefix$macro$54, operationKind$macro$55, sequenceConfig$macro$56, aboutUrl$macro$57, partners$macro$58, theme$macro$59, consultationImage$macro$60, consultationImageAlt$macro$61, descriptionImage$macro$62, descriptionImageAlt$macro$63, cobrandingLogo$macro$64, cobrandingLogoAlt$macro$65, displayResults$macro$66, reportUrl$macro$67, actionsUrl$macro$68, activeFeatures$macro$69, featured$macro$70, highlights$macro$71, timeline$macro$72, controversyCount$macro$73, topProposalCount$macro$74, activeFeatureData$macro$75, hasDemographics$macro$76, demographicsCardCount$macro$77, resultsLink$macro$78) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("questionId"), org.make.core.question.QuestionId, (Symbol @@ String("operationId")) :: (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("wording")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, org.make.core.operation.OperationId :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("operationId"), org.make.core.operation.OperationId, (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("wording")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("preferredLanguage"), Option[org.make.core.reference.Language], (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("wording")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, org.make.core.reference.Language :: org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("returnedLanguage"), org.make.core.reference.Language, (Symbol @@ String("wording")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, org.make.api.question.WordingResponse :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("wording"), org.make.api.question.WordingResponse, (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("question"), eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], (Symbol @@ String("shortTitle")) :: (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("shortTitle"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], (Symbol @@ String("slug")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, String :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("slug"), String, (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("countries"), cats.data.NonEmptyList[org.make.core.reference.Country], (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("languages"), cats.data.NonEmptyList[org.make.core.reference.Language], (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, java.time.ZonedDateTime :: java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("startDate"), java.time.ZonedDateTime, (Symbol @@ String("endDate")) :: (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, java.time.ZonedDateTime :: Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("endDate"), java.time.ZonedDateTime, (Symbol @@ String("canPropose")) :: (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Boolean :: String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("canPropose"), Boolean, (Symbol @@ String("proposalPrefix")) :: (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, String :: org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("proposalPrefix"), String, (Symbol @@ String("operationKind")) :: (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, org.make.core.operation.OperationKind :: org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("operationKind"), org.make.core.operation.OperationKind, (Symbol @@ String("sequenceConfig")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, org.make.api.question.SequenceCardsConfigurationResponse :: Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("sequenceConfig"), org.make.api.question.SequenceCardsConfigurationResponse, (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[String] :: Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("aboutUrl"), Option[String], (Symbol @@ String("partners")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Seq[org.make.api.question.QuestionPartnerResponse] :: org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("partners"), Seq[org.make.api.question.QuestionPartnerResponse], (Symbol @@ String("theme")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, org.make.api.question.QuestionThemeResponse :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("theme"), org.make.api.question.QuestionThemeResponse, (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("consultationImage"), Option[String], (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("consultationImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("descriptionImage"), Option[String], (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("descriptionImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], (Symbol @@ String("cobrandingLogo")) :: (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("cobrandingLogo"), Option[String], (Symbol @@ String("cobrandingLogoAlt")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("cobrandingLogoAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], (Symbol @@ String("displayResults")) :: (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Boolean :: Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("displayResults"), Boolean, (Symbol @@ String("reportUrl")) :: (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[String] :: Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("reportUrl"), Option[String], (Symbol @@ String("actionsUrl")) :: (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[String] :: Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("actionsUrl"), Option[String], (Symbol @@ String("activeFeatures")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Seq[org.make.core.feature.FeatureSlug] :: Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("activeFeatures"), Seq[org.make.core.feature.FeatureSlug], (Symbol @@ String("featured")) :: (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Boolean :: org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("featured"), Boolean, (Symbol @@ String("highlights")) :: (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, org.make.api.question.OperationOfQuestionHighlightsResponse :: org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("highlights"), org.make.api.question.OperationOfQuestionHighlightsResponse, (Symbol @@ String("timeline")) :: (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, org.make.api.question.TimelineResponse :: Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("timeline"), org.make.api.question.TimelineResponse, (Symbol @@ String("controversyCount")) :: (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Long :: Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("controversyCount"), Long, (Symbol @@ String("topProposalCount")) :: (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Long :: org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("topProposalCount"), Long, (Symbol @@ String("activeFeatureData")) :: (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, org.make.api.question.ActiveFeatureData :: Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("activeFeatureData"), org.make.api.question.ActiveFeatureData, (Symbol @@ String("hasDemographics")) :: (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Boolean :: Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("hasDemographics"), Boolean, (Symbol @@ String("demographicsCardCount")) :: (Symbol @@ String("resultsLink")) :: shapeless.HNil, Int :: Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("demographicsCardCount"), Int, (Symbol @@ String("resultsLink")) :: shapeless.HNil, Option[String] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("resultsLink"), Option[String], shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("resultsLink")]](scala.Symbol.apply("resultsLink").asInstanceOf[Symbol @@ String("resultsLink")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("resultsLink")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("demographicsCardCount")]](scala.Symbol.apply("demographicsCardCount").asInstanceOf[Symbol @@ String("demographicsCardCount")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("demographicsCardCount")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("hasDemographics")]](scala.Symbol.apply("hasDemographics").asInstanceOf[Symbol @@ String("hasDemographics")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("hasDemographics")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("activeFeatureData")]](scala.Symbol.apply("activeFeatureData").asInstanceOf[Symbol @@ String("activeFeatureData")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("activeFeatureData")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("topProposalCount")]](scala.Symbol.apply("topProposalCount").asInstanceOf[Symbol @@ String("topProposalCount")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("topProposalCount")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("controversyCount")]](scala.Symbol.apply("controversyCount").asInstanceOf[Symbol @@ String("controversyCount")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("controversyCount")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("timeline")]](scala.Symbol.apply("timeline").asInstanceOf[Symbol @@ String("timeline")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("timeline")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("highlights")]](scala.Symbol.apply("highlights").asInstanceOf[Symbol @@ String("highlights")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("highlights")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("featured")]](scala.Symbol.apply("featured").asInstanceOf[Symbol @@ String("featured")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("featured")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("activeFeatures")]](scala.Symbol.apply("activeFeatures").asInstanceOf[Symbol @@ String("activeFeatures")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("activeFeatures")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("actionsUrl")]](scala.Symbol.apply("actionsUrl").asInstanceOf[Symbol @@ String("actionsUrl")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("actionsUrl")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("reportUrl")]](scala.Symbol.apply("reportUrl").asInstanceOf[Symbol @@ String("reportUrl")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("reportUrl")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("displayResults")]](scala.Symbol.apply("displayResults").asInstanceOf[Symbol @@ String("displayResults")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("displayResults")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("cobrandingLogoAlt")]](scala.Symbol.apply("cobrandingLogoAlt").asInstanceOf[Symbol @@ String("cobrandingLogoAlt")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("cobrandingLogoAlt")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("cobrandingLogo")]](scala.Symbol.apply("cobrandingLogo").asInstanceOf[Symbol @@ String("cobrandingLogo")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("cobrandingLogo")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("descriptionImageAlt")]](scala.Symbol.apply("descriptionImageAlt").asInstanceOf[Symbol @@ String("descriptionImageAlt")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("descriptionImageAlt")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("descriptionImage")]](scala.Symbol.apply("descriptionImage").asInstanceOf[Symbol @@ String("descriptionImage")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("descriptionImage")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("consultationImageAlt")]](scala.Symbol.apply("consultationImageAlt").asInstanceOf[Symbol @@ String("consultationImageAlt")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("consultationImageAlt")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("consultationImage")]](scala.Symbol.apply("consultationImage").asInstanceOf[Symbol @@ String("consultationImage")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("consultationImage")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("theme")]](scala.Symbol.apply("theme").asInstanceOf[Symbol @@ String("theme")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("theme")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("partners")]](scala.Symbol.apply("partners").asInstanceOf[Symbol @@ String("partners")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("partners")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("aboutUrl")]](scala.Symbol.apply("aboutUrl").asInstanceOf[Symbol @@ String("aboutUrl")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("aboutUrl")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("sequenceConfig")]](scala.Symbol.apply("sequenceConfig").asInstanceOf[Symbol @@ String("sequenceConfig")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("sequenceConfig")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("operationKind")]](scala.Symbol.apply("operationKind").asInstanceOf[Symbol @@ String("operationKind")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("operationKind")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("proposalPrefix")]](scala.Symbol.apply("proposalPrefix").asInstanceOf[Symbol @@ String("proposalPrefix")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("proposalPrefix")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("canPropose")]](scala.Symbol.apply("canPropose").asInstanceOf[Symbol @@ String("canPropose")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("canPropose")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("endDate")]](scala.Symbol.apply("endDate").asInstanceOf[Symbol @@ String("endDate")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("endDate")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("startDate")]](scala.Symbol.apply("startDate").asInstanceOf[Symbol @@ String("startDate")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("startDate")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("languages")]](scala.Symbol.apply("languages").asInstanceOf[Symbol @@ String("languages")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("languages")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("countries")]](scala.Symbol.apply("countries").asInstanceOf[Symbol @@ String("countries")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("countries")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("slug")]](scala.Symbol.apply("slug").asInstanceOf[Symbol @@ String("slug")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("slug")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("shortTitle")]](scala.Symbol.apply("shortTitle").asInstanceOf[Symbol @@ String("shortTitle")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("shortTitle")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("question")]](scala.Symbol.apply("question").asInstanceOf[Symbol @@ String("question")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("question")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("wording")]](scala.Symbol.apply("wording").asInstanceOf[Symbol @@ String("wording")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("wording")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("returnedLanguage")]](scala.Symbol.apply("returnedLanguage").asInstanceOf[Symbol @@ String("returnedLanguage")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("returnedLanguage")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("preferredLanguage")]](scala.Symbol.apply("preferredLanguage").asInstanceOf[Symbol @@ String("preferredLanguage")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("preferredLanguage")]])), 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("questionId")]](scala.Symbol.apply("questionId").asInstanceOf[Symbol @@ String("questionId")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("questionId")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$81.this.inst$macro$80)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionDetailsResponse]]; <stable> <accessor> lazy val inst$macro$80: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForquestionId: io.circe.Decoder[org.make.core.question.QuestionId] = question.this.QuestionId.QuestionIdDecoder; private[this] val circeGenericDecoderForoperationId: io.circe.Decoder[org.make.core.operation.OperationId] = operation.this.OperationId.operationIdDecoder; private[this] val circeGenericDecoderForpreferredLanguage: io.circe.Decoder[Option[org.make.core.reference.Language]] = circe.this.Decoder.decodeOption[org.make.core.reference.Language](reference.this.Language.LanguageDecoder); private[this] val circeGenericDecoderForreturnedLanguage: io.circe.Decoder[org.make.core.reference.Language] = reference.this.Language.LanguageDecoder; private[this] val circeGenericDecoderForwording: io.circe.Codec[org.make.api.question.WordingResponse] = question.this.WordingResponse.codec; private[this] val circeGenericDecoderForquestion: io.circe.Decoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] = io.circe.refined.`package`.refinedDecoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Decoder.decodeString, boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s)))), api.this.RefType.refinedRefType); private[this] val circeGenericDecoderForshortTitle: io.circe.Decoder[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] = circe.this.Decoder.decodeOption[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](io.circe.refined.`package`.refinedDecoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Decoder.decodeString, boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s)))), api.this.RefType.refinedRefType)); private[this] val circeGenericDecoderForcountries: io.circe.Decoder[cats.data.NonEmptyList[org.make.core.reference.Country]] = circe.this.Decoder.decodeNonEmptyList[org.make.core.reference.Country](reference.this.Country.countryDecoder); private[this] val circeGenericDecoderForlanguages: io.circe.Decoder[cats.data.NonEmptyList[org.make.core.reference.Language]] = circe.this.Decoder.decodeNonEmptyList[org.make.core.reference.Language](reference.this.Language.LanguageDecoder); private[this] val circeGenericDecoderForendDate: io.circe.Decoder[java.time.ZonedDateTime] = QuestionDetailsResponse.this.zonedDateTimeDecoder; private[this] val circeGenericDecoderForproposalPrefix: io.circe.Decoder[String] = circe.this.Decoder.decodeString; private[this] val circeGenericDecoderForoperationKind: io.circe.Decoder[org.make.core.operation.OperationKind] = operation.this.OperationKind.circeDecoder; private[this] val circeGenericDecoderForsequenceConfig: io.circe.Codec[org.make.api.question.SequenceCardsConfigurationResponse] = question.this.SequenceCardsConfigurationResponse.codec; private[this] val circeGenericDecoderForpartners: io.circe.Decoder[Seq[org.make.api.question.QuestionPartnerResponse]] = circe.this.Decoder.decodeSeq[org.make.api.question.QuestionPartnerResponse](question.this.QuestionPartnerResponse.codec); private[this] val circeGenericDecoderFortheme: io.circe.Codec[org.make.api.question.QuestionThemeResponse] = question.this.QuestionThemeResponse.codec; private[this] val circeGenericDecoderForcobrandingLogoAlt: io.circe.Decoder[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] = circe.this.Decoder.decodeOption[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]](io.circe.refined.`package`.refinedDecoder[String, eu.timepit.refined.collection.MaxSize[130], eu.timepit.refined.api.Refined](circe.this.Decoder.decodeString, collection.this.Size.sizeValidate[String, eu.timepit.refined.numeric.Interval.Closed[shapeless.nat._0,130], this.R](boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[130], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[130], this.R](numeric.this.Greater.greaterValidate[Int, 130](internal.this.WitnessAs.singletonWitnessAs[Int, 130](Witness.mkWitness[130](130.asInstanceOf[130])), math.this.Numeric.IntIsIntegral))), ((s: String) => scala.Predef.wrapString(s))), api.this.RefType.refinedRefType)); private[this] val circeGenericDecoderForactiveFeatures: io.circe.Decoder[Seq[org.make.core.feature.FeatureSlug]] = circe.this.Decoder.decodeSeq[org.make.core.feature.FeatureSlug](feature.this.FeatureSlug.decoder(circe.this.Decoder.decodeString)); private[this] val circeGenericDecoderForhighlights: io.circe.Codec[org.make.api.question.OperationOfQuestionHighlightsResponse] = question.this.OperationOfQuestionHighlightsResponse.codec; private[this] val circeGenericDecoderFortimeline: io.circe.Codec[org.make.api.question.TimelineResponse] = question.this.TimelineResponse.codec; private[this] val circeGenericDecoderFortopProposalCount: io.circe.Decoder[Long] = circe.this.Decoder.decodeLong; private[this] val circeGenericDecoderForactiveFeatureData: io.circe.Codec[org.make.api.question.ActiveFeatureData] = question.this.ActiveFeatureData.codec; private[this] val circeGenericDecoderForhasDemographics: io.circe.Decoder[Boolean] = circe.this.Decoder.decodeBoolean; private[this] val circeGenericDecoderFordemographicsCardCount: io.circe.Decoder[Int] = circe.this.Decoder.decodeInt; private[this] val circeGenericDecoderForresultsLink: io.circe.Decoder[Option[String]] = circe.this.Decoder.decodeOption[String](circe.this.Decoder.decodeString); private[this] val circeGenericEncoderForquestionId: io.circe.Encoder[org.make.core.question.QuestionId] = QuestionDetailsResponse.this.stringValueEncoder[org.make.core.question.QuestionId]; private[this] val circeGenericEncoderForoperationId: io.circe.Encoder[org.make.core.operation.OperationId] = QuestionDetailsResponse.this.stringValueEncoder[org.make.core.operation.OperationId]; private[this] val circeGenericEncoderForpreferredLanguage: io.circe.Encoder[Option[org.make.core.reference.Language]] = circe.this.Encoder.encodeOption[org.make.core.reference.Language](QuestionDetailsResponse.this.stringValueEncoder[org.make.core.reference.Language]); private[this] val circeGenericEncoderForreturnedLanguage: io.circe.Encoder[org.make.core.reference.Language] = QuestionDetailsResponse.this.stringValueEncoder[org.make.core.reference.Language]; private[this] val circeGenericEncoderForwording: io.circe.Codec[org.make.api.question.WordingResponse] = question.this.WordingResponse.codec; private[this] val circeGenericEncoderForquestion: io.circe.Encoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] = io.circe.refined.`package`.refinedEncoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Encoder.encodeString, api.this.RefType.refinedRefType); private[this] val circeGenericEncoderForshortTitle: io.circe.Encoder[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] = circe.this.Encoder.encodeOption[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](io.circe.refined.`package`.refinedEncoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Encoder.encodeString, api.this.RefType.refinedRefType)); private[this] val circeGenericEncoderForcountries: io.circe.Encoder.AsArray[cats.data.NonEmptyList[org.make.core.reference.Country]] = circe.this.Encoder.encodeNonEmptyList[org.make.core.reference.Country](QuestionDetailsResponse.this.stringValueEncoder[org.make.core.reference.Country]); private[this] val circeGenericEncoderForlanguages: io.circe.Encoder.AsArray[cats.data.NonEmptyList[org.make.core.reference.Language]] = circe.this.Encoder.encodeNonEmptyList[org.make.core.reference.Language](QuestionDetailsResponse.this.stringValueEncoder[org.make.core.reference.Language]); private[this] val circeGenericEncoderForendDate: io.circe.Encoder[java.time.ZonedDateTime] = QuestionDetailsResponse.this.zonedDateTimeEncoder; private[this] val circeGenericEncoderForproposalPrefix: io.circe.Encoder[String] = circe.this.Encoder.encodeString; private[this] val circeGenericEncoderForoperationKind: io.circe.Encoder[org.make.core.operation.OperationKind] = operation.this.OperationKind.circeEncoder; private[this] val circeGenericEncoderForsequenceConfig: io.circe.Codec[org.make.api.question.SequenceCardsConfigurationResponse] = question.this.SequenceCardsConfigurationResponse.codec; private[this] val circeGenericEncoderForpartners: io.circe.Encoder.AsArray[Seq[org.make.api.question.QuestionPartnerResponse]] = circe.this.Encoder.encodeSeq[org.make.api.question.QuestionPartnerResponse](question.this.QuestionPartnerResponse.codec); private[this] val circeGenericEncoderFortheme: io.circe.Codec[org.make.api.question.QuestionThemeResponse] = question.this.QuestionThemeResponse.codec; private[this] val circeGenericEncoderForcobrandingLogoAlt: io.circe.Encoder[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] = circe.this.Encoder.encodeOption[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]](io.circe.refined.`package`.refinedEncoder[String, eu.timepit.refined.collection.MaxSize[130], eu.timepit.refined.api.Refined](circe.this.Encoder.encodeString, api.this.RefType.refinedRefType)); private[this] val circeGenericEncoderForactiveFeatures: io.circe.Encoder.AsArray[Seq[org.make.core.feature.FeatureSlug]] = circe.this.Encoder.encodeSeq[org.make.core.feature.FeatureSlug](feature.this.FeatureSlug.encoder(circe.this.Encoder.encodeString)); private[this] val circeGenericEncoderForhighlights: io.circe.Codec[org.make.api.question.OperationOfQuestionHighlightsResponse] = question.this.OperationOfQuestionHighlightsResponse.codec; private[this] val circeGenericEncoderFortimeline: io.circe.Codec[org.make.api.question.TimelineResponse] = question.this.TimelineResponse.codec; private[this] val circeGenericEncoderFortopProposalCount: io.circe.Encoder[Long] = circe.this.Encoder.encodeLong; private[this] val circeGenericEncoderForactiveFeatureData: io.circe.Codec[org.make.api.question.ActiveFeatureData] = question.this.ActiveFeatureData.codec; private[this] val circeGenericEncoderForhasDemographics: io.circe.Encoder[Boolean] = circe.this.Encoder.encodeBoolean; private[this] val circeGenericEncoderFordemographicsCardCount: io.circe.Encoder[Int] = circe.this.Encoder.encodeInt; private[this] val circeGenericEncoderForresultsLink: io.circe.Encoder[Option[String]] = circe.this.Encoder.encodeOption[String](circe.this.Encoder.encodeString); final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId], tail: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForquestionId @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId], tail: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForoperationId @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]], tail: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForpreferredLanguage @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language], tail: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForreturnedLanguage @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse], tail: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForwording @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], tail: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForquestion @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]], tail: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForshortTitle @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("slug"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForslug @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]], tail: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForcountries @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]], tail: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForlanguages @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime], tail: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForstartDate @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime], tail: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForendDate @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean], tail: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForcanPropose @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForproposalPrefix @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind], tail: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForoperationKind @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse], tail: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForsequenceConfig @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForaboutUrl @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]], tail: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForpartners @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse], tail: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFortheme @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForconsultationImage @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]], tail: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForconsultationImageAlt @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordescriptionImage @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]], tail: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordescriptionImageAlt @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForcobrandingLogo @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]], tail: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForcobrandingLogoAlt @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean], tail: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordisplayResults @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForreportUrl @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForactionsUrl @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]], tail: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForactiveFeatures @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean], tail: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForfeatured @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse], tail: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForhighlights @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse], tail: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFortimeline @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long], tail: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForcontroversyCount @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long], tail: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFortopProposalCount @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData], tail: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForactiveFeatureData @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean], tail: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForhasDemographics @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int], tail: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordemographicsCardCount @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForresultsLink @ _), shapeless.HNil)))))))))))))))))))))))))))))))))))))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("questionId", $anon.this.circeGenericEncoderForquestionId.apply(circeGenericHListBindingForquestionId)), scala.Tuple2.apply[String, io.circe.Json]("operationId", $anon.this.circeGenericEncoderForoperationId.apply(circeGenericHListBindingForoperationId)), scala.Tuple2.apply[String, io.circe.Json]("preferredLanguage", $anon.this.circeGenericEncoderForpreferredLanguage.apply(circeGenericHListBindingForpreferredLanguage)), scala.Tuple2.apply[String, io.circe.Json]("returnedLanguage", $anon.this.circeGenericEncoderForreturnedLanguage.apply(circeGenericHListBindingForreturnedLanguage)), scala.Tuple2.apply[String, io.circe.Json]("wording", $anon.this.circeGenericEncoderForwording.apply(circeGenericHListBindingForwording)), scala.Tuple2.apply[String, io.circe.Json]("question", $anon.this.circeGenericEncoderForquestion.apply(circeGenericHListBindingForquestion)), scala.Tuple2.apply[String, io.circe.Json]("shortTitle", $anon.this.circeGenericEncoderForshortTitle.apply(circeGenericHListBindingForshortTitle)), scala.Tuple2.apply[String, io.circe.Json]("slug", $anon.this.circeGenericEncoderForproposalPrefix.apply(circeGenericHListBindingForslug)), scala.Tuple2.apply[String, io.circe.Json]("countries", $anon.this.circeGenericEncoderForcountries.apply(circeGenericHListBindingForcountries)), scala.Tuple2.apply[String, io.circe.Json]("languages", $anon.this.circeGenericEncoderForlanguages.apply(circeGenericHListBindingForlanguages)), scala.Tuple2.apply[String, io.circe.Json]("startDate", $anon.this.circeGenericEncoderForendDate.apply(circeGenericHListBindingForstartDate)), scala.Tuple2.apply[String, io.circe.Json]("endDate", $anon.this.circeGenericEncoderForendDate.apply(circeGenericHListBindingForendDate)), scala.Tuple2.apply[String, io.circe.Json]("canPropose", $anon.this.circeGenericEncoderForhasDemographics.apply(circeGenericHListBindingForcanPropose)), scala.Tuple2.apply[String, io.circe.Json]("proposalPrefix", $anon.this.circeGenericEncoderForproposalPrefix.apply(circeGenericHListBindingForproposalPrefix)), scala.Tuple2.apply[String, io.circe.Json]("operationKind", $anon.this.circeGenericEncoderForoperationKind.apply(circeGenericHListBindingForoperationKind)), scala.Tuple2.apply[String, io.circe.Json]("sequenceConfig", $anon.this.circeGenericEncoderForsequenceConfig.apply(circeGenericHListBindingForsequenceConfig)), scala.Tuple2.apply[String, io.circe.Json]("aboutUrl", $anon.this.circeGenericEncoderForresultsLink.apply(circeGenericHListBindingForaboutUrl)), scala.Tuple2.apply[String, io.circe.Json]("partners", $anon.this.circeGenericEncoderForpartners.apply(circeGenericHListBindingForpartners)), scala.Tuple2.apply[String, io.circe.Json]("theme", $anon.this.circeGenericEncoderFortheme.apply(circeGenericHListBindingFortheme)), scala.Tuple2.apply[String, io.circe.Json]("consultationImage", $anon.this.circeGenericEncoderForresultsLink.apply(circeGenericHListBindingForconsultationImage)), scala.Tuple2.apply[String, io.circe.Json]("consultationImageAlt", $anon.this.circeGenericEncoderForcobrandingLogoAlt.apply(circeGenericHListBindingForconsultationImageAlt)), scala.Tuple2.apply[String, io.circe.Json]("descriptionImage", $anon.this.circeGenericEncoderForresultsLink.apply(circeGenericHListBindingFordescriptionImage)), scala.Tuple2.apply[String, io.circe.Json]("descriptionImageAlt", $anon.this.circeGenericEncoderForcobrandingLogoAlt.apply(circeGenericHListBindingFordescriptionImageAlt)), scala.Tuple2.apply[String, io.circe.Json]("cobrandingLogo", $anon.this.circeGenericEncoderForresultsLink.apply(circeGenericHListBindingForcobrandingLogo)), scala.Tuple2.apply[String, io.circe.Json]("cobrandingLogoAlt", $anon.this.circeGenericEncoderForcobrandingLogoAlt.apply(circeGenericHListBindingForcobrandingLogoAlt)), scala.Tuple2.apply[String, io.circe.Json]("displayResults", $anon.this.circeGenericEncoderForhasDemographics.apply(circeGenericHListBindingFordisplayResults)), scala.Tuple2.apply[String, io.circe.Json]("reportUrl", $anon.this.circeGenericEncoderForresultsLink.apply(circeGenericHListBindingForreportUrl)), scala.Tuple2.apply[String, io.circe.Json]("actionsUrl", $anon.this.circeGenericEncoderForresultsLink.apply(circeGenericHListBindingForactionsUrl)), scala.Tuple2.apply[String, io.circe.Json]("activeFeatures", $anon.this.circeGenericEncoderForactiveFeatures.apply(circeGenericHListBindingForactiveFeatures)), scala.Tuple2.apply[String, io.circe.Json]("featured", $anon.this.circeGenericEncoderForhasDemographics.apply(circeGenericHListBindingForfeatured)), scala.Tuple2.apply[String, io.circe.Json]("highlights", $anon.this.circeGenericEncoderForhighlights.apply(circeGenericHListBindingForhighlights)), scala.Tuple2.apply[String, io.circe.Json]("timeline", $anon.this.circeGenericEncoderFortimeline.apply(circeGenericHListBindingFortimeline)), scala.Tuple2.apply[String, io.circe.Json]("controversyCount", $anon.this.circeGenericEncoderFortopProposalCount.apply(circeGenericHListBindingForcontroversyCount)), scala.Tuple2.apply[String, io.circe.Json]("topProposalCount", $anon.this.circeGenericEncoderFortopProposalCount.apply(circeGenericHListBindingFortopProposalCount)), scala.Tuple2.apply[String, io.circe.Json]("activeFeatureData", $anon.this.circeGenericEncoderForactiveFeatureData.apply(circeGenericHListBindingForactiveFeatureData)), scala.Tuple2.apply[String, io.circe.Json]("hasDemographics", $anon.this.circeGenericEncoderForhasDemographics.apply(circeGenericHListBindingForhasDemographics)), scala.Tuple2.apply[String, io.circe.Json]("demographicsCardCount", $anon.this.circeGenericEncoderFordemographicsCardCount.apply(circeGenericHListBindingFordemographicsCardCount)), scala.Tuple2.apply[String, io.circe.Json]("resultsLink", $anon.this.circeGenericEncoderForresultsLink.apply(circeGenericHListBindingForresultsLink)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("questionId"), org.make.core.question.QuestionId, shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestionId.tryDecode(c.downField("questionId")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("operationId"), org.make.core.operation.OperationId, shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForoperationId.tryDecode(c.downField("operationId")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("preferredLanguage"), Option[org.make.core.reference.Language], shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpreferredLanguage.tryDecode(c.downField("preferredLanguage")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("returnedLanguage"), org.make.core.reference.Language, shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForreturnedLanguage.tryDecode(c.downField("returnedLanguage")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("wording"), org.make.api.question.WordingResponse, shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForwording.tryDecode(c.downField("wording")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("question"), eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestion.tryDecode(c.downField("question")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("shortTitle"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForshortTitle.tryDecode(c.downField("shortTitle")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("slug"), String, shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalPrefix.tryDecode(c.downField("slug")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("countries"), cats.data.NonEmptyList[org.make.core.reference.Country], shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcountries.tryDecode(c.downField("countries")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("languages"), cats.data.NonEmptyList[org.make.core.reference.Language], shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlanguages.tryDecode(c.downField("languages")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("startDate"), java.time.ZonedDateTime, shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForendDate.tryDecode(c.downField("startDate")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("endDate"), java.time.ZonedDateTime, shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForendDate.tryDecode(c.downField("endDate")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("canPropose"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForhasDemographics.tryDecode(c.downField("canPropose")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("proposalPrefix"), String, shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalPrefix.tryDecode(c.downField("proposalPrefix")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("operationKind"), org.make.core.operation.OperationKind, shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForoperationKind.tryDecode(c.downField("operationKind")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("sequenceConfig"), org.make.api.question.SequenceCardsConfigurationResponse, shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForsequenceConfig.tryDecode(c.downField("sequenceConfig")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("aboutUrl"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecode(c.downField("aboutUrl")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("partners"), Seq[org.make.api.question.QuestionPartnerResponse], shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpartners.tryDecode(c.downField("partners")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("theme"), org.make.api.question.QuestionThemeResponse, shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortheme.tryDecode(c.downField("theme")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("consultationImage"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecode(c.downField("consultationImage")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("consultationImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcobrandingLogoAlt.tryDecode(c.downField("consultationImageAlt")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("descriptionImage"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecode(c.downField("descriptionImage")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("descriptionImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcobrandingLogoAlt.tryDecode(c.downField("descriptionImageAlt")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("cobrandingLogo"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecode(c.downField("cobrandingLogo")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("cobrandingLogoAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcobrandingLogoAlt.tryDecode(c.downField("cobrandingLogoAlt")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("displayResults"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForhasDemographics.tryDecode(c.downField("displayResults")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("reportUrl"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecode(c.downField("reportUrl")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("actionsUrl"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecode(c.downField("actionsUrl")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("activeFeatures"), Seq[org.make.core.feature.FeatureSlug], shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactiveFeatures.tryDecode(c.downField("activeFeatures")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("featured"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForhasDemographics.tryDecode(c.downField("featured")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("highlights"), org.make.api.question.OperationOfQuestionHighlightsResponse, shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForhighlights.tryDecode(c.downField("highlights")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("timeline"), org.make.api.question.TimelineResponse, shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortimeline.tryDecode(c.downField("timeline")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("controversyCount"), Long, shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortopProposalCount.tryDecode(c.downField("controversyCount")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("topProposalCount"), Long, shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortopProposalCount.tryDecode(c.downField("topProposalCount")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("activeFeatureData"), org.make.api.question.ActiveFeatureData, shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactiveFeatureData.tryDecode(c.downField("activeFeatureData")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("hasDemographics"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForhasDemographics.tryDecode(c.downField("hasDemographics")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("demographicsCardCount"), Int, shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordemographicsCardCount.tryDecode(c.downField("demographicsCardCount")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("resultsLink"), Option[String], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecode(c.downField("resultsLink")), 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))(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))(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))(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))(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))(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("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("questionId"), org.make.core.question.QuestionId, shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestionId.tryDecodeAccumulating(c.downField("questionId")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("operationId"), org.make.core.operation.OperationId, shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForoperationId.tryDecodeAccumulating(c.downField("operationId")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("preferredLanguage"), Option[org.make.core.reference.Language], shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpreferredLanguage.tryDecodeAccumulating(c.downField("preferredLanguage")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("returnedLanguage"), org.make.core.reference.Language, shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForreturnedLanguage.tryDecodeAccumulating(c.downField("returnedLanguage")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("wording"), org.make.api.question.WordingResponse, shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForwording.tryDecodeAccumulating(c.downField("wording")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("question"), eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestion.tryDecodeAccumulating(c.downField("question")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("shortTitle"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForshortTitle.tryDecodeAccumulating(c.downField("shortTitle")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("slug"), String, shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalPrefix.tryDecodeAccumulating(c.downField("slug")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("countries"), cats.data.NonEmptyList[org.make.core.reference.Country], shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcountries.tryDecodeAccumulating(c.downField("countries")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("languages"), cats.data.NonEmptyList[org.make.core.reference.Language], shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlanguages.tryDecodeAccumulating(c.downField("languages")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("startDate"), java.time.ZonedDateTime, shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForendDate.tryDecodeAccumulating(c.downField("startDate")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("endDate"), java.time.ZonedDateTime, shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForendDate.tryDecodeAccumulating(c.downField("endDate")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("canPropose"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForhasDemographics.tryDecodeAccumulating(c.downField("canPropose")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("proposalPrefix"), String, shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForproposalPrefix.tryDecodeAccumulating(c.downField("proposalPrefix")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("operationKind"), org.make.core.operation.OperationKind, shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForoperationKind.tryDecodeAccumulating(c.downField("operationKind")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("sequenceConfig"), org.make.api.question.SequenceCardsConfigurationResponse, shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForsequenceConfig.tryDecodeAccumulating(c.downField("sequenceConfig")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("aboutUrl"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecodeAccumulating(c.downField("aboutUrl")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("partners"), Seq[org.make.api.question.QuestionPartnerResponse], shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpartners.tryDecodeAccumulating(c.downField("partners")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("theme"), org.make.api.question.QuestionThemeResponse, shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortheme.tryDecodeAccumulating(c.downField("theme")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("consultationImage"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecodeAccumulating(c.downField("consultationImage")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("consultationImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcobrandingLogoAlt.tryDecodeAccumulating(c.downField("consultationImageAlt")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("descriptionImage"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecodeAccumulating(c.downField("descriptionImage")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("descriptionImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcobrandingLogoAlt.tryDecodeAccumulating(c.downField("descriptionImageAlt")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("cobrandingLogo"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecodeAccumulating(c.downField("cobrandingLogo")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("cobrandingLogoAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcobrandingLogoAlt.tryDecodeAccumulating(c.downField("cobrandingLogoAlt")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("displayResults"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForhasDemographics.tryDecodeAccumulating(c.downField("displayResults")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("reportUrl"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecodeAccumulating(c.downField("reportUrl")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("actionsUrl"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecodeAccumulating(c.downField("actionsUrl")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("activeFeatures"), Seq[org.make.core.feature.FeatureSlug], shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactiveFeatures.tryDecodeAccumulating(c.downField("activeFeatures")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("featured"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForhasDemographics.tryDecodeAccumulating(c.downField("featured")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("highlights"), org.make.api.question.OperationOfQuestionHighlightsResponse, shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForhighlights.tryDecodeAccumulating(c.downField("highlights")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("timeline"), org.make.api.question.TimelineResponse, shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortimeline.tryDecodeAccumulating(c.downField("timeline")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("controversyCount"), Long, shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortopProposalCount.tryDecodeAccumulating(c.downField("controversyCount")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("topProposalCount"), Long, shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortopProposalCount.tryDecodeAccumulating(c.downField("topProposalCount")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("activeFeatureData"), org.make.api.question.ActiveFeatureData, shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactiveFeatureData.tryDecodeAccumulating(c.downField("activeFeatureData")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("hasDemographics"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForhasDemographics.tryDecodeAccumulating(c.downField("hasDemographics")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("demographicsCardCount"), Int, shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordemographicsCardCount.tryDecodeAccumulating(c.downField("demographicsCardCount")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("resultsLink"), Option[String], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecodeAccumulating(c.downField("resultsLink")), 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))(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))(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))(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))(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))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("operationId"),org.make.core.operation.OperationId] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("wording"),org.make.api.question.WordingResponse] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("slug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("canPropose"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("proposalPrefix"),String] :: shapeless.labelled.FieldType[Symbol @@ String("operationKind"),org.make.core.operation.OperationKind] :: shapeless.labelled.FieldType[Symbol @@ String("sequenceConfig"),org.make.api.question.SequenceCardsConfigurationResponse] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("partners"),Seq[org.make.api.question.QuestionPartnerResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogo"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("cobrandingLogoAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("reportUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actionsUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatures"),Seq[org.make.core.feature.FeatureSlug]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("highlights"),org.make.api.question.OperationOfQuestionHighlightsResponse] :: shapeless.labelled.FieldType[Symbol @@ String("timeline"),org.make.api.question.TimelineResponse] :: shapeless.labelled.FieldType[Symbol @@ String("controversyCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("topProposalCount"),Long] :: shapeless.labelled.FieldType[Symbol @@ String("activeFeatureData"),org.make.api.question.ActiveFeatureData] :: shapeless.labelled.FieldType[Symbol @@ String("hasDemographics"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("demographicsCardCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$81().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionDetailsResponse]](inst$macro$82) })
421 28663 17352 - 17394 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.defaultLanguage indexedOperationOfQuestion.defaultLanguage
421 29258 17329 - 17584 Apply scala.Option.fold org.make.api.question.questionapitest preferredLanguage.fold[org.make.core.reference.Language](indexedOperationOfQuestion.defaultLanguage)(((lang: org.make.core.reference.Language) => indexedOperationOfQuestion.languages.find(((language: org.make.core.reference.Language) => language.value.==(lang.value))).getOrElse[org.make.core.reference.Language](indexedOperationOfQuestion.defaultLanguage)))
424 29588 17484 - 17512 Apply java.lang.Object.== org.make.api.question.questionapitest language.value.==(lang.value)
424 30449 17502 - 17512 Select org.make.core.reference.Language.value org.make.api.question.questionapitest lang.value
425 28772 17535 - 17577 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.defaultLanguage indexedOperationOfQuestion.defaultLanguage
425 30131 17419 - 17578 Apply scala.Option.getOrElse org.make.api.question.questionapitest indexedOperationOfQuestion.languages.find(((language: org.make.core.reference.Language) => language.value.==(lang.value))).getOrElse[org.make.core.reference.Language](indexedOperationOfQuestion.defaultLanguage)
427 30034 17589 - 19536 Apply org.make.api.question.QuestionOfOperationResponse.apply org.make.api.question.questionapitest QuestionOfOperationResponse.apply(indexedOperationOfQuestion.questionId, indexedOperationOfQuestion.slug, preferredLanguage, returnedLanguage, indexedOperationOfQuestion.questions.getTranslationUnsafe(returnedLanguage), indexedOperationOfQuestion.questionShortTitles.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((x$22: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]) => x$22.getTranslation(returnedLanguage))), indexedOperationOfQuestion.operationTitles.getTranslationUnsafe(returnedLanguage), indexedOperationOfQuestion.consultationImages.flatMap[String](((x$23: org.make.core.technical.Multilingual[String]) => x$23.getTranslation(returnedLanguage))), indexedOperationOfQuestion.consultationImageAlts.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]](((x$24: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]]) => x$24.getTranslation(returnedLanguage))), indexedOperationOfQuestion.descriptionImages.flatMap[String](((x$25: org.make.core.technical.Multilingual[String]) => x$25.getTranslation(returnedLanguage))), indexedOperationOfQuestion.descriptionImageAlts.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]](((x$26: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]]) => x$26.getTranslation(returnedLanguage))), indexedOperationOfQuestion.countries, indexedOperationOfQuestion.languages, indexedOperationOfQuestion.startDate, indexedOperationOfQuestion.endDate, QuestionThemeResponse.fromQuestionTheme(indexedOperationOfQuestion.theme), indexedOperationOfQuestion.resultsLink.isDefined, indexedOperationOfQuestion.resultsLink.flatMap[org.make.core.operation.ResultsLink](((value: String) => org.make.core.operation.ResultsLink.parse(value))).map[org.make.api.operation.ResultsLinkResponse](((resultsLink: org.make.core.operation.ResultsLink) => org.make.api.operation.ResultsLinkResponse.apply(resultsLink))), indexedOperationOfQuestion.aboutUrls.flatMap[String](((x$27: org.make.core.technical.Multilingual[String]) => x$27.getTranslation(returnedLanguage))), indexedOperationOfQuestion.actions, indexedOperationOfQuestion.featured, indexedOperationOfQuestion.participantsCount, indexedOperationOfQuestion.proposalsCount, indexedOperationOfQuestion.votesCount)
428 28892 17637 - 17674 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.questionId org.make.api.question.questionapitest indexedOperationOfQuestion.questionId
429 30279 17697 - 17728 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.slug org.make.api.question.questionapitest indexedOperationOfQuestion.slug
432 29390 17835 - 17910 Apply org.make.core.technical.Multilingual.getTranslationUnsafe org.make.api.question.questionapitest indexedOperationOfQuestion.questions.getTranslationUnsafe(returnedLanguage)
433 30320 17931 - 18021 Apply scala.Option.flatMap org.make.api.question.questionapitest indexedOperationOfQuestion.questionShortTitles.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((x$22: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]) => x$22.getTranslation(returnedLanguage)))
433 28627 17986 - 18020 Apply org.make.core.technical.Multilingual.getTranslation x$22.getTranslation(returnedLanguage)
434 29562 18046 - 18127 Apply org.make.core.technical.Multilingual.getTranslationUnsafe org.make.api.question.questionapitest indexedOperationOfQuestion.operationTitles.getTranslationUnsafe(returnedLanguage)
435 30097 18155 - 18244 Apply scala.Option.flatMap org.make.api.question.questionapitest indexedOperationOfQuestion.consultationImages.flatMap[String](((x$23: org.make.core.technical.Multilingual[String]) => x$23.getTranslation(returnedLanguage)))
435 28777 18209 - 18243 Apply org.make.core.technical.Multilingual.getTranslation org.make.api.question.questionapitest x$23.getTranslation(returnedLanguage)
437 28894 18283 - 18375 Apply scala.Option.flatMap org.make.api.question.questionapitest indexedOperationOfQuestion.consultationImageAlts.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]](((x$24: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]]) => x$24.getTranslation(returnedLanguage)))
437 29305 18340 - 18374 Apply org.make.core.technical.Multilingual.getTranslation org.make.api.question.questionapitest x$24.getTranslation(returnedLanguage)
438 29393 18402 - 18490 Apply scala.Option.flatMap org.make.api.question.questionapitest indexedOperationOfQuestion.descriptionImages.flatMap[String](((x$25: org.make.core.technical.Multilingual[String]) => x$25.getTranslation(returnedLanguage)))
438 30242 18455 - 18489 Apply org.make.core.technical.Multilingual.getTranslation x$25.getTranslation(returnedLanguage)
439 30443 18520 - 18611 Apply scala.Option.flatMap org.make.api.question.questionapitest indexedOperationOfQuestion.descriptionImageAlts.flatMap[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]](((x$26: org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[Int(130)]]]) => x$26.getTranslation(returnedLanguage)))
439 28632 18576 - 18610 Apply org.make.core.technical.Multilingual.getTranslation x$26.getTranslation(returnedLanguage)
440 29567 18631 - 18667 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.countries org.make.api.question.questionapitest indexedOperationOfQuestion.countries
441 28681 18687 - 18723 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.languages org.make.api.question.questionapitest indexedOperationOfQuestion.languages
442 30104 18743 - 18779 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.startDate org.make.api.question.questionapitest indexedOperationOfQuestion.startDate
443 29307 18797 - 18831 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.endDate org.make.api.question.questionapitest indexedOperationOfQuestion.endDate
444 28937 18887 - 18919 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.theme org.make.api.question.questionapitest indexedOperationOfQuestion.theme
444 30244 18847 - 18920 Apply org.make.api.question.QuestionThemeResponse.fromQuestionTheme org.make.api.question.questionapitest QuestionThemeResponse.fromQuestionTheme(indexedOperationOfQuestion.theme)
445 29398 18945 - 18993 Select scala.Option.isDefined org.make.api.question.questionapitest indexedOperationOfQuestion.resultsLink.isDefined
447 28601 19071 - 19088 Apply org.make.core.operation.ResultsLink.parse org.make.api.question.questionapitest org.make.core.operation.ResultsLink.parse(value)
448 29938 19103 - 19128 Apply org.make.api.operation.ResultsLinkResponse.apply org.make.api.question.questionapitest org.make.api.operation.ResultsLinkResponse.apply(resultsLink)
448 29628 19015 - 19129 Apply scala.Option.map org.make.api.question.questionapitest indexedOperationOfQuestion.resultsLink.flatMap[org.make.core.operation.ResultsLink](((value: String) => org.make.core.operation.ResultsLink.parse(value))).map[org.make.api.operation.ResultsLinkResponse](((resultsLink: org.make.core.operation.ResultsLink) => org.make.api.operation.ResultsLinkResponse.apply(resultsLink)))
449 28683 19193 - 19227 Apply org.make.core.technical.Multilingual.getTranslation x$27.getTranslation(returnedLanguage)
449 30110 19148 - 19228 Apply scala.Option.flatMap org.make.api.question.questionapitest indexedOperationOfQuestion.aboutUrls.flatMap[String](((x$27: org.make.core.technical.Multilingual[String]) => x$27.getTranslation(returnedLanguage)))
450 29347 19246 - 19280 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.actions org.make.api.question.questionapitest indexedOperationOfQuestion.actions
451 28942 19299 - 19334 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.featured org.make.api.question.questionapitest indexedOperationOfQuestion.featured
452 30232 19362 - 19406 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.participantsCount org.make.api.question.questionapitest indexedOperationOfQuestion.participantsCount
453 29374 19431 - 19472 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.proposalsCount org.make.api.question.questionapitest indexedOperationOfQuestion.proposalsCount
454 28608 19493 - 19530 Select org.make.core.operation.indexed.IndexedOperationOfQuestion.votesCount org.make.api.question.questionapitest indexedOperationOfQuestion.votesCount
458 29632 19601 - 19641 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec org.make.api.question.questionapitest io.circe.generic.semiauto.deriveCodec[org.make.api.question.QuestionOfOperationResponse]({ val inst$macro$54: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionOfOperationResponse] = { final class anon$lazy$macro$53 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$53 = { anon$lazy$macro$53.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionOfOperationResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.QuestionOfOperationResponse, shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.QuestionOfOperationResponse, (Symbol @@ String("questionId")) :: (Symbol @@ String("questionSlug")) :: (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, org.make.core.question.QuestionId :: String :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.QuestionOfOperationResponse, (Symbol @@ String("questionId")) :: (Symbol @@ String("questionSlug")) :: (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil](::.apply[Symbol @@ String("questionId"), (Symbol @@ String("questionSlug")) :: (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("questionId").asInstanceOf[Symbol @@ String("questionId")], ::.apply[Symbol @@ String("questionSlug"), (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("questionSlug").asInstanceOf[Symbol @@ String("questionSlug")], ::.apply[Symbol @@ String("preferredLanguage"), (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("preferredLanguage").asInstanceOf[Symbol @@ String("preferredLanguage")], ::.apply[Symbol @@ String("returnedLanguage"), (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("returnedLanguage").asInstanceOf[Symbol @@ String("returnedLanguage")], ::.apply[Symbol @@ String("question"), (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("question").asInstanceOf[Symbol @@ String("question")], ::.apply[Symbol @@ String("shortTitle"), (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("shortTitle").asInstanceOf[Symbol @@ String("shortTitle")], ::.apply[Symbol @@ String("operationTitle"), (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("operationTitle").asInstanceOf[Symbol @@ String("operationTitle")], ::.apply[Symbol @@ String("consultationImage"), (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("consultationImage").asInstanceOf[Symbol @@ String("consultationImage")], ::.apply[Symbol @@ String("consultationImageAlt"), (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("consultationImageAlt").asInstanceOf[Symbol @@ String("consultationImageAlt")], ::.apply[Symbol @@ String("descriptionImage"), (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("descriptionImage").asInstanceOf[Symbol @@ String("descriptionImage")], ::.apply[Symbol @@ String("descriptionImageAlt"), (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("descriptionImageAlt").asInstanceOf[Symbol @@ String("descriptionImageAlt")], ::.apply[Symbol @@ String("countries"), (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("countries").asInstanceOf[Symbol @@ String("countries")], ::.apply[Symbol @@ String("languages"), (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("languages").asInstanceOf[Symbol @@ String("languages")], ::.apply[Symbol @@ String("startDate"), (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("startDate").asInstanceOf[Symbol @@ String("startDate")], ::.apply[Symbol @@ String("endDate"), (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("endDate").asInstanceOf[Symbol @@ String("endDate")], ::.apply[Symbol @@ String("theme"), (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("theme").asInstanceOf[Symbol @@ String("theme")], ::.apply[Symbol @@ String("displayResults"), (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("displayResults").asInstanceOf[Symbol @@ String("displayResults")], ::.apply[Symbol @@ String("resultsLink"), (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("resultsLink").asInstanceOf[Symbol @@ String("resultsLink")], ::.apply[Symbol @@ String("aboutUrl"), (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("aboutUrl").asInstanceOf[Symbol @@ String("aboutUrl")], ::.apply[Symbol @@ String("actions"), (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("actions").asInstanceOf[Symbol @@ String("actions")], ::.apply[Symbol @@ String("featured"), (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("featured").asInstanceOf[Symbol @@ String("featured")], ::.apply[Symbol @@ String("participantsCount"), (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("participantsCount").asInstanceOf[Symbol @@ String("participantsCount")], ::.apply[Symbol @@ String("proposalsCount"), (Symbol @@ String("votesCount")) :: shapeless.HNil.type](scala.Symbol.apply("proposalsCount").asInstanceOf[Symbol @@ String("proposalsCount")], ::.apply[Symbol @@ String("votesCount"), shapeless.HNil.type](scala.Symbol.apply("votesCount").asInstanceOf[Symbol @@ String("votesCount")], HNil))))))))))))))))))))))))), Generic.instance[org.make.api.question.QuestionOfOperationResponse, org.make.core.question.QuestionId :: String :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil](((x0$3: org.make.api.question.QuestionOfOperationResponse) => x0$3 match { case (x$macro$51 @ _) => ::.apply[org.make.core.question.QuestionId, String :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.questionId, ::.apply[String, Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.questionSlug, ::.apply[Option[org.make.core.reference.Language], org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.preferredLanguage, ::.apply[org.make.core.reference.Language, eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.returnedLanguage, ::.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.question, ::.apply[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.shortTitle, ::.apply[String, Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.operationTitle, ::.apply[Option[String], Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.consultationImage, ::.apply[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.consultationImageAlt, ::.apply[Option[String], Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.descriptionImage, ::.apply[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.descriptionImageAlt, ::.apply[cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.countries, ::.apply[cats.data.NonEmptyList[org.make.core.reference.Language], java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.languages, ::.apply[java.time.ZonedDateTime, java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.startDate, ::.apply[java.time.ZonedDateTime, org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.endDate, ::.apply[org.make.api.question.QuestionThemeResponse, Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.theme, ::.apply[Boolean, Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.displayResults, ::.apply[Option[org.make.api.operation.ResultsLinkResponse], Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.resultsLink, ::.apply[Option[String], Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.aboutUrl, ::.apply[Option[String], Boolean :: Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.actions, ::.apply[Boolean, Int :: Int :: Int :: shapeless.HNil.type](x$macro$51.featured, ::.apply[Int, Int :: Int :: shapeless.HNil.type](x$macro$51.participantsCount, ::.apply[Int, Int :: shapeless.HNil.type](x$macro$51.proposalsCount, ::.apply[Int, shapeless.HNil.type](x$macro$51.votesCount, HNil)))))))))))))))))))))))).asInstanceOf[org.make.core.question.QuestionId :: String :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil] }), ((x0$4: org.make.core.question.QuestionId :: String :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil) => x0$4 match { case (head: org.make.core.question.QuestionId, tail: String :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): org.make.core.question.QuestionId :: String :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((questionId$macro$27 @ _), (head: String, tail: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): String :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((questionSlug$macro$28 @ _), (head: Option[org.make.core.reference.Language], tail: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((preferredLanguage$macro$29 @ _), (head: org.make.core.reference.Language, tail: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((returnedLanguage$macro$30 @ _), (head: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], tail: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((question$macro$31 @ _), (head: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], tail: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((shortTitle$macro$32 @ _), (head: String, tail: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((operationTitle$macro$33 @ _), (head: Option[String], tail: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((consultationImage$macro$34 @ _), (head: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], tail: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((consultationImageAlt$macro$35 @ _), (head: Option[String], tail: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((descriptionImage$macro$36 @ _), (head: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], tail: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((descriptionImageAlt$macro$37 @ _), (head: cats.data.NonEmptyList[org.make.core.reference.Country], tail: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((countries$macro$38 @ _), (head: cats.data.NonEmptyList[org.make.core.reference.Language], tail: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((languages$macro$39 @ _), (head: java.time.ZonedDateTime, tail: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((startDate$macro$40 @ _), (head: java.time.ZonedDateTime, tail: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((endDate$macro$41 @ _), (head: org.make.api.question.QuestionThemeResponse, tail: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((theme$macro$42 @ _), (head: Boolean, tail: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((displayResults$macro$43 @ _), (head: Option[org.make.api.operation.ResultsLinkResponse], tail: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((resultsLink$macro$44 @ _), (head: Option[String], tail: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil): Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((aboutUrl$macro$45 @ _), (head: Option[String], tail: Boolean :: Int :: Int :: Int :: shapeless.HNil): Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil((actions$macro$46 @ _), (head: Boolean, tail: Int :: Int :: Int :: shapeless.HNil): Boolean :: Int :: Int :: Int :: shapeless.HNil((featured$macro$47 @ _), (head: Int, tail: Int :: Int :: shapeless.HNil): Int :: Int :: Int :: shapeless.HNil((participantsCount$macro$48 @ _), (head: Int, tail: Int :: shapeless.HNil): Int :: Int :: shapeless.HNil((proposalsCount$macro$49 @ _), (head: Int, tail: shapeless.HNil): Int :: shapeless.HNil((votesCount$macro$50 @ _), HNil)))))))))))))))))))))))) => question.this.QuestionOfOperationResponse.apply(questionId$macro$27, questionSlug$macro$28, preferredLanguage$macro$29, returnedLanguage$macro$30, question$macro$31, shortTitle$macro$32, operationTitle$macro$33, consultationImage$macro$34, consultationImageAlt$macro$35, descriptionImage$macro$36, descriptionImageAlt$macro$37, countries$macro$38, languages$macro$39, startDate$macro$40, endDate$macro$41, theme$macro$42, displayResults$macro$43, resultsLink$macro$44, aboutUrl$macro$45, actions$macro$46, featured$macro$47, participantsCount$macro$48, proposalsCount$macro$49, votesCount$macro$50) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("questionId"), org.make.core.question.QuestionId, (Symbol @@ String("questionSlug")) :: (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, String :: Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("questionSlug"), String, (Symbol @@ String("preferredLanguage")) :: (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Option[org.make.core.reference.Language] :: org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("preferredLanguage"), Option[org.make.core.reference.Language], (Symbol @@ String("returnedLanguage")) :: (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, org.make.core.reference.Language :: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("returnedLanguage"), org.make.core.reference.Language, (Symbol @@ String("question")) :: (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("question"), eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], (Symbol @@ String("shortTitle")) :: (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("shortTitle"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], (Symbol @@ String("operationTitle")) :: (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, String :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("operationTitle"), String, (Symbol @@ String("consultationImage")) :: (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("consultationImage"), Option[String], (Symbol @@ String("consultationImageAlt")) :: (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("consultationImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], (Symbol @@ String("descriptionImage")) :: (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Option[String] :: Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("descriptionImage"), Option[String], (Symbol @@ String("descriptionImageAlt")) :: (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]] :: cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("descriptionImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], (Symbol @@ String("countries")) :: (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, cats.data.NonEmptyList[org.make.core.reference.Country] :: cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("countries"), cats.data.NonEmptyList[org.make.core.reference.Country], (Symbol @@ String("languages")) :: (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, cats.data.NonEmptyList[org.make.core.reference.Language] :: java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("languages"), cats.data.NonEmptyList[org.make.core.reference.Language], (Symbol @@ String("startDate")) :: (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, java.time.ZonedDateTime :: java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("startDate"), java.time.ZonedDateTime, (Symbol @@ String("endDate")) :: (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, java.time.ZonedDateTime :: org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("endDate"), java.time.ZonedDateTime, (Symbol @@ String("theme")) :: (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, org.make.api.question.QuestionThemeResponse :: Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("theme"), org.make.api.question.QuestionThemeResponse, (Symbol @@ String("displayResults")) :: (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Boolean :: Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("displayResults"), Boolean, (Symbol @@ String("resultsLink")) :: (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Option[org.make.api.operation.ResultsLinkResponse] :: Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("resultsLink"), Option[org.make.api.operation.ResultsLinkResponse], (Symbol @@ String("aboutUrl")) :: (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Option[String] :: Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("aboutUrl"), Option[String], (Symbol @@ String("actions")) :: (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Option[String] :: Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("actions"), Option[String], (Symbol @@ String("featured")) :: (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Boolean :: Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("featured"), Boolean, (Symbol @@ String("participantsCount")) :: (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Int :: Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("participantsCount"), Int, (Symbol @@ String("proposalsCount")) :: (Symbol @@ String("votesCount")) :: shapeless.HNil, Int :: Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("proposalsCount"), Int, (Symbol @@ String("votesCount")) :: shapeless.HNil, Int :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("votesCount"), Int, shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("votesCount")]](scala.Symbol.apply("votesCount").asInstanceOf[Symbol @@ String("votesCount")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("votesCount")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("proposalsCount")]](scala.Symbol.apply("proposalsCount").asInstanceOf[Symbol @@ String("proposalsCount")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("proposalsCount")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("participantsCount")]](scala.Symbol.apply("participantsCount").asInstanceOf[Symbol @@ String("participantsCount")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("participantsCount")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("featured")]](scala.Symbol.apply("featured").asInstanceOf[Symbol @@ String("featured")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("featured")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("actions")]](scala.Symbol.apply("actions").asInstanceOf[Symbol @@ String("actions")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("actions")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("aboutUrl")]](scala.Symbol.apply("aboutUrl").asInstanceOf[Symbol @@ String("aboutUrl")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("aboutUrl")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("resultsLink")]](scala.Symbol.apply("resultsLink").asInstanceOf[Symbol @@ String("resultsLink")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("resultsLink")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("displayResults")]](scala.Symbol.apply("displayResults").asInstanceOf[Symbol @@ String("displayResults")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("displayResults")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("theme")]](scala.Symbol.apply("theme").asInstanceOf[Symbol @@ String("theme")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("theme")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("endDate")]](scala.Symbol.apply("endDate").asInstanceOf[Symbol @@ String("endDate")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("endDate")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("startDate")]](scala.Symbol.apply("startDate").asInstanceOf[Symbol @@ String("startDate")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("startDate")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("languages")]](scala.Symbol.apply("languages").asInstanceOf[Symbol @@ String("languages")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("languages")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("countries")]](scala.Symbol.apply("countries").asInstanceOf[Symbol @@ String("countries")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("countries")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("descriptionImageAlt")]](scala.Symbol.apply("descriptionImageAlt").asInstanceOf[Symbol @@ String("descriptionImageAlt")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("descriptionImageAlt")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("descriptionImage")]](scala.Symbol.apply("descriptionImage").asInstanceOf[Symbol @@ String("descriptionImage")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("descriptionImage")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("consultationImageAlt")]](scala.Symbol.apply("consultationImageAlt").asInstanceOf[Symbol @@ String("consultationImageAlt")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("consultationImageAlt")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("consultationImage")]](scala.Symbol.apply("consultationImage").asInstanceOf[Symbol @@ String("consultationImage")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("consultationImage")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("operationTitle")]](scala.Symbol.apply("operationTitle").asInstanceOf[Symbol @@ String("operationTitle")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("operationTitle")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("shortTitle")]](scala.Symbol.apply("shortTitle").asInstanceOf[Symbol @@ String("shortTitle")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("shortTitle")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("question")]](scala.Symbol.apply("question").asInstanceOf[Symbol @@ String("question")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("question")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("returnedLanguage")]](scala.Symbol.apply("returnedLanguage").asInstanceOf[Symbol @@ String("returnedLanguage")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("returnedLanguage")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("preferredLanguage")]](scala.Symbol.apply("preferredLanguage").asInstanceOf[Symbol @@ String("preferredLanguage")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("preferredLanguage")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("questionSlug")]](scala.Symbol.apply("questionSlug").asInstanceOf[Symbol @@ String("questionSlug")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("questionSlug")]])), 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")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$53.this.inst$macro$52)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionOfOperationResponse]]; <stable> <accessor> lazy val inst$macro$52: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForquestionId: io.circe.Decoder[org.make.core.question.QuestionId] = question.this.QuestionId.QuestionIdDecoder; private[this] val circeGenericDecoderForpreferredLanguage: io.circe.Decoder[Option[org.make.core.reference.Language]] = circe.this.Decoder.decodeOption[org.make.core.reference.Language](reference.this.Language.LanguageDecoder); private[this] val circeGenericDecoderForreturnedLanguage: io.circe.Decoder[org.make.core.reference.Language] = reference.this.Language.LanguageDecoder; private[this] val circeGenericDecoderForquestion: io.circe.Decoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] = io.circe.refined.`package`.refinedDecoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Decoder.decodeString, boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s)))), api.this.RefType.refinedRefType); private[this] val circeGenericDecoderForshortTitle: io.circe.Decoder[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] = circe.this.Decoder.decodeOption[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](io.circe.refined.`package`.refinedDecoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Decoder.decodeString, boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s)))), api.this.RefType.refinedRefType)); private[this] val circeGenericDecoderForoperationTitle: io.circe.Decoder[String] = circe.this.Decoder.decodeString; private[this] val circeGenericDecoderFordescriptionImageAlt: io.circe.Decoder[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] = circe.this.Decoder.decodeOption[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]](io.circe.refined.`package`.refinedDecoder[String, eu.timepit.refined.collection.MaxSize[130], eu.timepit.refined.api.Refined](circe.this.Decoder.decodeString, collection.this.Size.sizeValidate[String, eu.timepit.refined.numeric.Interval.Closed[shapeless.nat._0,130], this.R](boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[130], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[130], this.R](numeric.this.Greater.greaterValidate[Int, 130](internal.this.WitnessAs.singletonWitnessAs[Int, 130](Witness.mkWitness[130](130.asInstanceOf[130])), math.this.Numeric.IntIsIntegral))), ((s: String) => scala.Predef.wrapString(s))), api.this.RefType.refinedRefType)); private[this] val circeGenericDecoderForcountries: io.circe.Decoder[cats.data.NonEmptyList[org.make.core.reference.Country]] = circe.this.Decoder.decodeNonEmptyList[org.make.core.reference.Country](reference.this.Country.countryDecoder); private[this] val circeGenericDecoderForlanguages: io.circe.Decoder[cats.data.NonEmptyList[org.make.core.reference.Language]] = circe.this.Decoder.decodeNonEmptyList[org.make.core.reference.Language](reference.this.Language.LanguageDecoder); private[this] val circeGenericDecoderForendDate: io.circe.Decoder[java.time.ZonedDateTime] = QuestionOfOperationResponse.this.zonedDateTimeDecoder; private[this] val circeGenericDecoderFortheme: io.circe.Codec[org.make.api.question.QuestionThemeResponse] = question.this.QuestionThemeResponse.codec; private[this] val circeGenericDecoderForresultsLink: io.circe.Decoder[Option[org.make.api.operation.ResultsLinkResponse]] = circe.this.Decoder.decodeOption[org.make.api.operation.ResultsLinkResponse](operation.this.ResultsLinkResponse.codec); private[this] val circeGenericDecoderForactions: io.circe.Decoder[Option[String]] = circe.this.Decoder.decodeOption[String](circe.this.Decoder.decodeString); private[this] val circeGenericDecoderForfeatured: io.circe.Decoder[Boolean] = circe.this.Decoder.decodeBoolean; private[this] val circeGenericDecoderForvotesCount: io.circe.Decoder[Int] = circe.this.Decoder.decodeInt; private[this] val circeGenericEncoderForquestionId: io.circe.Encoder[org.make.core.question.QuestionId] = QuestionOfOperationResponse.this.stringValueEncoder[org.make.core.question.QuestionId]; private[this] val circeGenericEncoderForpreferredLanguage: io.circe.Encoder[Option[org.make.core.reference.Language]] = circe.this.Encoder.encodeOption[org.make.core.reference.Language](QuestionOfOperationResponse.this.stringValueEncoder[org.make.core.reference.Language]); private[this] val circeGenericEncoderForreturnedLanguage: io.circe.Encoder[org.make.core.reference.Language] = QuestionOfOperationResponse.this.stringValueEncoder[org.make.core.reference.Language]; private[this] val circeGenericEncoderForquestion: io.circe.Encoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] = io.circe.refined.`package`.refinedEncoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Encoder.encodeString, api.this.RefType.refinedRefType); private[this] val circeGenericEncoderForshortTitle: io.circe.Encoder[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] = circe.this.Encoder.encodeOption[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](io.circe.refined.`package`.refinedEncoder[String, eu.timepit.refined.collection.NonEmpty, eu.timepit.refined.api.Refined](circe.this.Encoder.encodeString, api.this.RefType.refinedRefType)); private[this] val circeGenericEncoderForoperationTitle: io.circe.Encoder[String] = circe.this.Encoder.encodeString; private[this] val circeGenericEncoderFordescriptionImageAlt: io.circe.Encoder[Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] = circe.this.Encoder.encodeOption[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]](io.circe.refined.`package`.refinedEncoder[String, eu.timepit.refined.collection.MaxSize[130], eu.timepit.refined.api.Refined](circe.this.Encoder.encodeString, api.this.RefType.refinedRefType)); private[this] val circeGenericEncoderForcountries: io.circe.Encoder.AsArray[cats.data.NonEmptyList[org.make.core.reference.Country]] = circe.this.Encoder.encodeNonEmptyList[org.make.core.reference.Country](QuestionOfOperationResponse.this.stringValueEncoder[org.make.core.reference.Country]); private[this] val circeGenericEncoderForlanguages: io.circe.Encoder.AsArray[cats.data.NonEmptyList[org.make.core.reference.Language]] = circe.this.Encoder.encodeNonEmptyList[org.make.core.reference.Language](QuestionOfOperationResponse.this.stringValueEncoder[org.make.core.reference.Language]); private[this] val circeGenericEncoderForendDate: io.circe.Encoder[java.time.ZonedDateTime] = QuestionOfOperationResponse.this.zonedDateTimeEncoder; private[this] val circeGenericEncoderFortheme: io.circe.Codec[org.make.api.question.QuestionThemeResponse] = question.this.QuestionThemeResponse.codec; private[this] val circeGenericEncoderForresultsLink: io.circe.Encoder[Option[org.make.api.operation.ResultsLinkResponse]] = circe.this.Encoder.encodeOption[org.make.api.operation.ResultsLinkResponse](operation.this.ResultsLinkResponse.codec); private[this] val circeGenericEncoderForactions: io.circe.Encoder[Option[String]] = circe.this.Encoder.encodeOption[String](circe.this.Encoder.encodeString); private[this] val circeGenericEncoderForfeatured: io.circe.Encoder[Boolean] = circe.this.Encoder.encodeBoolean; private[this] val circeGenericEncoderForvotesCount: io.circe.Encoder[Int] = circe.this.Encoder.encodeInt; final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId], tail: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForquestionId @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForquestionSlug @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]], tail: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForpreferredLanguage @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language], tail: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForreturnedLanguage @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], tail: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForquestion @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]], tail: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForshortTitle @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForoperationTitle @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForconsultationImage @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]], tail: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForconsultationImageAlt @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordescriptionImage @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]], tail: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordescriptionImageAlt @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]], tail: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForcountries @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]], tail: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForlanguages @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime], tail: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForstartDate @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime], tail: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForendDate @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse], tail: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFortheme @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean], tail: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFordisplayResults @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]], tail: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForresultsLink @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForaboutUrl @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]], tail: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForactions @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean], tail: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForfeatured @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int], tail: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForparticipantsCount @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int], tail: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForproposalsCount @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForvotesCount @ _), shapeless.HNil)))))))))))))))))))))))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("questionId", $anon.this.circeGenericEncoderForquestionId.apply(circeGenericHListBindingForquestionId)), scala.Tuple2.apply[String, io.circe.Json]("questionSlug", $anon.this.circeGenericEncoderForoperationTitle.apply(circeGenericHListBindingForquestionSlug)), scala.Tuple2.apply[String, io.circe.Json]("preferredLanguage", $anon.this.circeGenericEncoderForpreferredLanguage.apply(circeGenericHListBindingForpreferredLanguage)), scala.Tuple2.apply[String, io.circe.Json]("returnedLanguage", $anon.this.circeGenericEncoderForreturnedLanguage.apply(circeGenericHListBindingForreturnedLanguage)), scala.Tuple2.apply[String, io.circe.Json]("question", $anon.this.circeGenericEncoderForquestion.apply(circeGenericHListBindingForquestion)), scala.Tuple2.apply[String, io.circe.Json]("shortTitle", $anon.this.circeGenericEncoderForshortTitle.apply(circeGenericHListBindingForshortTitle)), scala.Tuple2.apply[String, io.circe.Json]("operationTitle", $anon.this.circeGenericEncoderForoperationTitle.apply(circeGenericHListBindingForoperationTitle)), scala.Tuple2.apply[String, io.circe.Json]("consultationImage", $anon.this.circeGenericEncoderForactions.apply(circeGenericHListBindingForconsultationImage)), scala.Tuple2.apply[String, io.circe.Json]("consultationImageAlt", $anon.this.circeGenericEncoderFordescriptionImageAlt.apply(circeGenericHListBindingForconsultationImageAlt)), scala.Tuple2.apply[String, io.circe.Json]("descriptionImage", $anon.this.circeGenericEncoderForactions.apply(circeGenericHListBindingFordescriptionImage)), scala.Tuple2.apply[String, io.circe.Json]("descriptionImageAlt", $anon.this.circeGenericEncoderFordescriptionImageAlt.apply(circeGenericHListBindingFordescriptionImageAlt)), scala.Tuple2.apply[String, io.circe.Json]("countries", $anon.this.circeGenericEncoderForcountries.apply(circeGenericHListBindingForcountries)), scala.Tuple2.apply[String, io.circe.Json]("languages", $anon.this.circeGenericEncoderForlanguages.apply(circeGenericHListBindingForlanguages)), scala.Tuple2.apply[String, io.circe.Json]("startDate", $anon.this.circeGenericEncoderForendDate.apply(circeGenericHListBindingForstartDate)), scala.Tuple2.apply[String, io.circe.Json]("endDate", $anon.this.circeGenericEncoderForendDate.apply(circeGenericHListBindingForendDate)), scala.Tuple2.apply[String, io.circe.Json]("theme", $anon.this.circeGenericEncoderFortheme.apply(circeGenericHListBindingFortheme)), scala.Tuple2.apply[String, io.circe.Json]("displayResults", $anon.this.circeGenericEncoderForfeatured.apply(circeGenericHListBindingFordisplayResults)), scala.Tuple2.apply[String, io.circe.Json]("resultsLink", $anon.this.circeGenericEncoderForresultsLink.apply(circeGenericHListBindingForresultsLink)), scala.Tuple2.apply[String, io.circe.Json]("aboutUrl", $anon.this.circeGenericEncoderForactions.apply(circeGenericHListBindingForaboutUrl)), scala.Tuple2.apply[String, io.circe.Json]("actions", $anon.this.circeGenericEncoderForactions.apply(circeGenericHListBindingForactions)), scala.Tuple2.apply[String, io.circe.Json]("featured", $anon.this.circeGenericEncoderForfeatured.apply(circeGenericHListBindingForfeatured)), scala.Tuple2.apply[String, io.circe.Json]("participantsCount", $anon.this.circeGenericEncoderForvotesCount.apply(circeGenericHListBindingForparticipantsCount)), scala.Tuple2.apply[String, io.circe.Json]("proposalsCount", $anon.this.circeGenericEncoderForvotesCount.apply(circeGenericHListBindingForproposalsCount)), scala.Tuple2.apply[String, io.circe.Json]("votesCount", $anon.this.circeGenericEncoderForvotesCount.apply(circeGenericHListBindingForvotesCount)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("questionId"), org.make.core.question.QuestionId, shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestionId.tryDecode(c.downField("questionId")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("questionSlug"), String, shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForoperationTitle.tryDecode(c.downField("questionSlug")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("preferredLanguage"), Option[org.make.core.reference.Language], shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpreferredLanguage.tryDecode(c.downField("preferredLanguage")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("returnedLanguage"), org.make.core.reference.Language, shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForreturnedLanguage.tryDecode(c.downField("returnedLanguage")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("question"), eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestion.tryDecode(c.downField("question")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("shortTitle"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForshortTitle.tryDecode(c.downField("shortTitle")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("operationTitle"), String, shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForoperationTitle.tryDecode(c.downField("operationTitle")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("consultationImage"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactions.tryDecode(c.downField("consultationImage")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("consultationImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescriptionImageAlt.tryDecode(c.downField("consultationImageAlt")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("descriptionImage"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactions.tryDecode(c.downField("descriptionImage")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("descriptionImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescriptionImageAlt.tryDecode(c.downField("descriptionImageAlt")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("countries"), cats.data.NonEmptyList[org.make.core.reference.Country], shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcountries.tryDecode(c.downField("countries")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("languages"), cats.data.NonEmptyList[org.make.core.reference.Language], shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlanguages.tryDecode(c.downField("languages")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("startDate"), java.time.ZonedDateTime, shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForendDate.tryDecode(c.downField("startDate")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("endDate"), java.time.ZonedDateTime, shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForendDate.tryDecode(c.downField("endDate")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("theme"), org.make.api.question.QuestionThemeResponse, shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortheme.tryDecode(c.downField("theme")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("displayResults"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfeatured.tryDecode(c.downField("displayResults")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("resultsLink"), Option[org.make.api.operation.ResultsLinkResponse], shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecode(c.downField("resultsLink")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("aboutUrl"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactions.tryDecode(c.downField("aboutUrl")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("actions"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactions.tryDecode(c.downField("actions")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("featured"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfeatured.tryDecode(c.downField("featured")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("participantsCount"), Int, shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForvotesCount.tryDecode(c.downField("participantsCount")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("proposalsCount"), Int, shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForvotesCount.tryDecode(c.downField("proposalsCount")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("votesCount"), Int, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForvotesCount.tryDecode(c.downField("votesCount")), 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))(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))(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))(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("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("questionId"), org.make.core.question.QuestionId, shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestionId.tryDecodeAccumulating(c.downField("questionId")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("questionSlug"), String, shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForoperationTitle.tryDecodeAccumulating(c.downField("questionSlug")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("preferredLanguage"), Option[org.make.core.reference.Language], shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForpreferredLanguage.tryDecodeAccumulating(c.downField("preferredLanguage")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("returnedLanguage"), org.make.core.reference.Language, shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForreturnedLanguage.tryDecodeAccumulating(c.downField("returnedLanguage")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("question"), eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty], shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForquestion.tryDecodeAccumulating(c.downField("question")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("shortTitle"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]], shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForshortTitle.tryDecodeAccumulating(c.downField("shortTitle")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("operationTitle"), String, shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForoperationTitle.tryDecodeAccumulating(c.downField("operationTitle")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("consultationImage"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactions.tryDecodeAccumulating(c.downField("consultationImage")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("consultationImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescriptionImageAlt.tryDecodeAccumulating(c.downField("consultationImageAlt")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("descriptionImage"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactions.tryDecodeAccumulating(c.downField("descriptionImage")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("descriptionImageAlt"), Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]], shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFordescriptionImageAlt.tryDecodeAccumulating(c.downField("descriptionImageAlt")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("countries"), cats.data.NonEmptyList[org.make.core.reference.Country], shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForcountries.tryDecodeAccumulating(c.downField("countries")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("languages"), cats.data.NonEmptyList[org.make.core.reference.Language], shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForlanguages.tryDecodeAccumulating(c.downField("languages")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("startDate"), java.time.ZonedDateTime, shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForendDate.tryDecodeAccumulating(c.downField("startDate")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("endDate"), java.time.ZonedDateTime, shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForendDate.tryDecodeAccumulating(c.downField("endDate")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("theme"), org.make.api.question.QuestionThemeResponse, shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortheme.tryDecodeAccumulating(c.downField("theme")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("displayResults"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfeatured.tryDecodeAccumulating(c.downField("displayResults")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("resultsLink"), Option[org.make.api.operation.ResultsLinkResponse], shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForresultsLink.tryDecodeAccumulating(c.downField("resultsLink")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("aboutUrl"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactions.tryDecodeAccumulating(c.downField("aboutUrl")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("actions"), Option[String], shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForactions.tryDecodeAccumulating(c.downField("actions")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("featured"), Boolean, shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfeatured.tryDecodeAccumulating(c.downField("featured")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("participantsCount"), Int, shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForvotesCount.tryDecodeAccumulating(c.downField("participantsCount")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("proposalsCount"), Int, shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForvotesCount.tryDecodeAccumulating(c.downField("proposalsCount")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("votesCount"), Int, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForvotesCount.tryDecodeAccumulating(c.downField("votesCount")), 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))(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))(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))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("questionId"),org.make.core.question.QuestionId] :: shapeless.labelled.FieldType[Symbol @@ String("questionSlug"),String] :: shapeless.labelled.FieldType[Symbol @@ String("preferredLanguage"),Option[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("returnedLanguage"),org.make.core.reference.Language] :: shapeless.labelled.FieldType[Symbol @@ String("question"),eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]] :: shapeless.labelled.FieldType[Symbol @@ String("shortTitle"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]] :: shapeless.labelled.FieldType[Symbol @@ String("operationTitle"),String] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("consultationImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImage"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("descriptionImageAlt"),Option[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[130]]]] :: shapeless.labelled.FieldType[Symbol @@ String("countries"),cats.data.NonEmptyList[org.make.core.reference.Country]] :: shapeless.labelled.FieldType[Symbol @@ String("languages"),cats.data.NonEmptyList[org.make.core.reference.Language]] :: shapeless.labelled.FieldType[Symbol @@ String("startDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("endDate"),java.time.ZonedDateTime] :: shapeless.labelled.FieldType[Symbol @@ String("theme"),org.make.api.question.QuestionThemeResponse] :: shapeless.labelled.FieldType[Symbol @@ String("displayResults"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("resultsLink"),Option[org.make.api.operation.ResultsLinkResponse]] :: shapeless.labelled.FieldType[Symbol @@ String("aboutUrl"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("actions"),Option[String]] :: shapeless.labelled.FieldType[Symbol @@ String("featured"),Boolean] :: shapeless.labelled.FieldType[Symbol @@ String("participantsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("proposalsCount"),Int] :: shapeless.labelled.FieldType[Symbol @@ String("votesCount"),Int] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$53().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionOfOperationResponse]](inst$macro$54) })
470 28530 20225 - 20382 Apply org.make.api.question.QuestionThemeResponse.apply QuestionThemeResponse.apply(eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, String, org.make.core.Validation.Colour](theme.color)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, String, org.make.core.Validation.Colour](theme.color)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, String, org.make.core.Validation.Colour](theme.color)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, String, org.make.core.Validation.Colour](theme.fontColor)(api.this.RefType.refinedRefType))
471 30076 20276 - 20276 Select eu.timepit.refined.api.RefType.refinedRefType api.this.RefType.refinedRefType
471 29355 20270 - 20281 ApplyToImplicitArgs eu.timepit.refined.auto.autoUnwrap eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, String, org.make.core.Validation.Colour](theme.color)(api.this.RefType.refinedRefType)
471 28774 20270 - 20281 Select org.make.core.operation.QuestionTheme.color theme.color
472 29475 20303 - 20314 ApplyToImplicitArgs eu.timepit.refined.auto.autoUnwrap eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, String, org.make.core.Validation.Colour](theme.color)(api.this.RefType.refinedRefType)
472 30239 20309 - 20309 Select eu.timepit.refined.api.RefType.refinedRefType api.this.RefType.refinedRefType
472 28525 20303 - 20314 Select org.make.core.operation.QuestionTheme.color theme.color
473 29547 20330 - 20341 ApplyToImplicitArgs eu.timepit.refined.auto.autoUnwrap eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, String, org.make.core.Validation.Colour](theme.color)(api.this.RefType.refinedRefType)
473 30043 20336 - 20336 Select eu.timepit.refined.api.RefType.refinedRefType api.this.RefType.refinedRefType
473 28650 20330 - 20341 Select org.make.core.operation.QuestionTheme.color theme.color
474 28736 20361 - 20376 Select org.make.core.operation.QuestionTheme.fontColor theme.fontColor
474 30167 20367 - 20367 Select eu.timepit.refined.api.RefType.refinedRefType api.this.RefType.refinedRefType
474 29323 20361 - 20376 ApplyToImplicitArgs eu.timepit.refined.auto.autoUnwrap eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, String, org.make.core.Validation.Colour](theme.fontColor)(api.this.RefType.refinedRefType)
478 30243 20441 - 20452 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.QuestionThemeResponse]({ val inst$macro$20: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionThemeResponse] = { final class anon$lazy$macro$19 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$19 = { anon$lazy$macro$19.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionThemeResponse] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.QuestionThemeResponse, shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.QuestionThemeResponse, (Symbol @@ String("gradientStart")) :: (Symbol @@ String("gradientEnd")) :: (Symbol @@ String("color")) :: (Symbol @@ String("fontColor")) :: shapeless.HNil, String :: String :: String :: String :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.QuestionThemeResponse, (Symbol @@ String("gradientStart")) :: (Symbol @@ String("gradientEnd")) :: (Symbol @@ String("color")) :: (Symbol @@ String("fontColor")) :: shapeless.HNil](::.apply[Symbol @@ String("gradientStart"), (Symbol @@ String("gradientEnd")) :: (Symbol @@ String("color")) :: (Symbol @@ String("fontColor")) :: shapeless.HNil.type](scala.Symbol.apply("gradientStart").asInstanceOf[Symbol @@ String("gradientStart")], ::.apply[Symbol @@ String("gradientEnd"), (Symbol @@ String("color")) :: (Symbol @@ String("fontColor")) :: shapeless.HNil.type](scala.Symbol.apply("gradientEnd").asInstanceOf[Symbol @@ String("gradientEnd")], ::.apply[Symbol @@ String("color"), (Symbol @@ String("fontColor")) :: shapeless.HNil.type](scala.Symbol.apply("color").asInstanceOf[Symbol @@ String("color")], ::.apply[Symbol @@ String("fontColor"), shapeless.HNil.type](scala.Symbol.apply("fontColor").asInstanceOf[Symbol @@ String("fontColor")], HNil))))), Generic.instance[org.make.api.question.QuestionThemeResponse, String :: String :: String :: String :: shapeless.HNil](((x0$3: org.make.api.question.QuestionThemeResponse) => x0$3 match { case (gradientStart: String, gradientEnd: String, color: String, fontColor: String): org.make.api.question.QuestionThemeResponse((gradientStart$macro$14 @ _), (gradientEnd$macro$15 @ _), (color$macro$16 @ _), (fontColor$macro$17 @ _)) => ::.apply[String, String :: String :: String :: shapeless.HNil.type](gradientStart$macro$14, ::.apply[String, String :: String :: shapeless.HNil.type](gradientEnd$macro$15, ::.apply[String, String :: shapeless.HNil.type](color$macro$16, ::.apply[String, shapeless.HNil.type](fontColor$macro$17, HNil)))).asInstanceOf[String :: String :: String :: String :: shapeless.HNil] }), ((x0$4: String :: String :: String :: String :: shapeless.HNil) => x0$4 match { case (head: String, tail: String :: String :: String :: shapeless.HNil): String :: String :: String :: String :: shapeless.HNil((gradientStart$macro$10 @ _), (head: String, tail: String :: String :: shapeless.HNil): String :: String :: String :: shapeless.HNil((gradientEnd$macro$11 @ _), (head: String, tail: String :: shapeless.HNil): String :: String :: shapeless.HNil((color$macro$12 @ _), (head: String, tail: shapeless.HNil): String :: shapeless.HNil((fontColor$macro$13 @ _), HNil)))) => question.this.QuestionThemeResponse.apply(gradientStart$macro$10, gradientEnd$macro$11, color$macro$12, fontColor$macro$13) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("gradientStart"), String, (Symbol @@ String("gradientEnd")) :: (Symbol @@ String("color")) :: (Symbol @@ String("fontColor")) :: shapeless.HNil, String :: String :: String :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("gradientEnd"), String, (Symbol @@ String("color")) :: (Symbol @@ String("fontColor")) :: shapeless.HNil, String :: String :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("color"), String, (Symbol @@ String("fontColor")) :: shapeless.HNil, String :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("fontColor"), String, shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("fontColor")]](scala.Symbol.apply("fontColor").asInstanceOf[Symbol @@ String("fontColor")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("fontColor")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("color")]](scala.Symbol.apply("color").asInstanceOf[Symbol @@ String("color")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("color")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("gradientEnd")]](scala.Symbol.apply("gradientEnd").asInstanceOf[Symbol @@ String("gradientEnd")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("gradientEnd")]])), Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("gradientStart")]](scala.Symbol.apply("gradientStart").asInstanceOf[Symbol @@ String("gradientStart")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("gradientStart")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$19.this.inst$macro$18)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionThemeResponse]]; <stable> <accessor> lazy val inst$macro$18: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderForfontColor: io.circe.Decoder[String] = circe.this.Decoder.decodeString; private[this] val circeGenericEncoderForfontColor: io.circe.Encoder[String] = circe.this.Encoder.encodeString; final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForgradientStart @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForgradientEnd @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("color"),String], tail: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForcolor @ _), (head: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingForfontColor @ _), shapeless.HNil)))) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("gradientStart", $anon.this.circeGenericEncoderForfontColor.apply(circeGenericHListBindingForgradientStart)), scala.Tuple2.apply[String, io.circe.Json]("gradientEnd", $anon.this.circeGenericEncoderForfontColor.apply(circeGenericHListBindingForgradientEnd)), scala.Tuple2.apply[String, io.circe.Json]("color", $anon.this.circeGenericEncoderForfontColor.apply(circeGenericHListBindingForcolor)), scala.Tuple2.apply[String, io.circe.Json]("fontColor", $anon.this.circeGenericEncoderForfontColor.apply(circeGenericHListBindingForfontColor)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("gradientStart"), String, shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfontColor.tryDecode(c.downField("gradientStart")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("gradientEnd"), String, shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfontColor.tryDecode(c.downField("gradientEnd")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("color"), String, shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfontColor.tryDecode(c.downField("color")), ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("fontColor"), String, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfontColor.tryDecode(c.downField("fontColor")), ReprDecoder.hnilResult)(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("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("gradientStart"), String, shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfontColor.tryDecodeAccumulating(c.downField("gradientStart")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("gradientEnd"), String, shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfontColor.tryDecodeAccumulating(c.downField("gradientEnd")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("color"), String, shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfontColor.tryDecodeAccumulating(c.downField("color")), ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("fontColor"), String, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderForfontColor.tryDecodeAccumulating(c.downField("fontColor")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance))(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("gradientStart"),String] :: shapeless.labelled.FieldType[Symbol @@ String("gradientEnd"),String] :: shapeless.labelled.FieldType[Symbol @@ String("color"),String] :: shapeless.labelled.FieldType[Symbol @@ String("fontColor"),String] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$19().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.QuestionThemeResponse]](inst$macro$20) })
484 29442 20607 - 20618 ApplyToImplicitArgs io.circe.generic.semiauto.deriveCodec io.circe.generic.semiauto.deriveCodec[org.make.api.question.ActiveFeatureData]({ val inst$macro$8: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.ActiveFeatureData] = { final class anon$lazy$macro$7 extends AnyRef with Serializable { def <init>(): anon$lazy$macro$7 = { anon$lazy$macro$7.super.<init>(); () }; <stable> <accessor> lazy val inst$macro$1: io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.ActiveFeatureData] = codec.this.DerivedAsObjectCodec.deriveCodec[org.make.api.question.ActiveFeatureData, shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](shapeless.this.LabelledGeneric.materializeProduct[org.make.api.question.ActiveFeatureData, (Symbol @@ String("topProposal")) :: shapeless.HNil, Option[org.make.api.proposal.ProposalResponse] :: shapeless.HNil, shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](DefaultSymbolicLabelling.instance[org.make.api.question.ActiveFeatureData, (Symbol @@ String("topProposal")) :: shapeless.HNil](::.apply[Symbol @@ String("topProposal"), shapeless.HNil.type](scala.Symbol.apply("topProposal").asInstanceOf[Symbol @@ String("topProposal")], HNil)), Generic.instance[org.make.api.question.ActiveFeatureData, Option[org.make.api.proposal.ProposalResponse] :: shapeless.HNil](((x0$3: org.make.api.question.ActiveFeatureData) => x0$3 match { case (topProposal: Option[org.make.api.proposal.ProposalResponse]): org.make.api.question.ActiveFeatureData((topProposal$macro$5 @ _)) => ::.apply[Option[org.make.api.proposal.ProposalResponse], shapeless.HNil.type](topProposal$macro$5, HNil).asInstanceOf[Option[org.make.api.proposal.ProposalResponse] :: shapeless.HNil] }), ((x0$4: Option[org.make.api.proposal.ProposalResponse] :: shapeless.HNil) => x0$4 match { case (head: Option[org.make.api.proposal.ProposalResponse], tail: shapeless.HNil): Option[org.make.api.proposal.ProposalResponse] :: shapeless.HNil((topProposal$macro$4 @ _), HNil) => question.this.ActiveFeatureData.apply(topProposal$macro$4) })), hlist.this.ZipWithKeys.hconsZipWithKeys[Symbol @@ String("topProposal"), Option[org.make.api.proposal.ProposalResponse], shapeless.HNil, shapeless.HNil, shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out](hlist.this.ZipWithKeys.hnilZipWithKeys, Witness.mkWitness[Symbol with shapeless.tag.Tagged[String("topProposal")]](scala.Symbol.apply("topProposal").asInstanceOf[Symbol @@ String("topProposal")].asInstanceOf[Symbol with shapeless.tag.Tagged[String("topProposal")]])), scala.this.<:<.refl[shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]), shapeless.Lazy.apply[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]](anon$lazy$macro$7.this.inst$macro$6)).asInstanceOf[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.ActiveFeatureData]]; <stable> <accessor> lazy val inst$macro$6: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ({ final class $anon extends io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] { def <init>(): <$anon: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]> = { $anon.super.<init>(); () }; private[this] val circeGenericDecoderFortopProposal: io.circe.Decoder[Option[org.make.api.proposal.ProposalResponse]] = circe.this.Decoder.decodeOption[org.make.api.proposal.ProposalResponse](proposal.this.ProposalResponse.codec); private[this] val circeGenericEncoderFortopProposal: io.circe.Encoder[Option[org.make.api.proposal.ProposalResponse]] = circe.this.Encoder.encodeOption[org.make.api.proposal.ProposalResponse](proposal.this.ProposalResponse.codec); final def encodeObject(a: shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): io.circe.JsonObject = a match { case (head: shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]], tail: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out): shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out((circeGenericHListBindingFortopProposal @ _), shapeless.HNil) => io.circe.JsonObject.fromIterable(scala.collection.immutable.Vector.apply[(String, io.circe.Json)](scala.Tuple2.apply[String, io.circe.Json]("topProposal", $anon.this.circeGenericEncoderFortopProposal.apply(circeGenericHListBindingFortopProposal)))) }; final def apply(c: io.circe.HCursor): io.circe.Decoder.Result[shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.Result, Symbol @@ String("topProposal"), Option[org.make.api.proposal.ProposalResponse], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortopProposal.tryDecode(c.downField("topProposal")), ReprDecoder.hnilResult)(io.circe.Decoder.resultInstance); final override def decodeAccumulating(c: io.circe.HCursor): io.circe.Decoder.AccumulatingResult[shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out] = ReprDecoder.consResults[io.circe.Decoder.AccumulatingResult, Symbol @@ String("topProposal"), Option[org.make.api.proposal.ProposalResponse], shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]($anon.this.circeGenericDecoderFortopProposal.tryDecodeAccumulating(c.downField("topProposal")), ReprDecoder.hnilResultAccumulating)(io.circe.Decoder.accumulatingResultInstance) }; new $anon() }: io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]).asInstanceOf[io.circe.generic.codec.ReprAsObjectCodec[shapeless.labelled.FieldType[Symbol @@ String("topProposal"),Option[org.make.api.proposal.ProposalResponse]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] }; new anon$lazy$macro$7().inst$macro$1 }; shapeless.Lazy.apply[io.circe.generic.codec.DerivedAsObjectCodec[org.make.api.question.ActiveFeatureData]](inst$macro$8) })