All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.quafadas.dairect.TextToSend.scala Maven / Gradle / Ivy

package io.github.quafadas.dairect

import smithy4s.Hints
import smithy4s.Schema
import smithy4s.ShapeId
import smithy4s.ShapeTag
import smithy4s.schema.Schema.string
import smithy4s.schema.Schema.struct

final case class TextToSend(text: String)

object TextToSend extends ShapeTag.Companion[TextToSend] {
  val id: ShapeId = ShapeId("io.github.quafadas.dairect", "TextToSend")

  val hints: Hints = Hints.empty

  // constructor using the original order from the spec
  private def make(text: String): TextToSend = TextToSend(text)

  implicit val schema: Schema[TextToSend] = struct(
    string.required[TextToSend]("text", _.text),
  )(make).withId(id).addHints(hints)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy