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

scala.googleapis.bigquery.TableFieldSchemaCategories.scala Maven / Gradle / Ivy

There is a newer version: 0.4.5-v2-20240905
Show newest version
package googleapis.bigquery

import io.circe._
import io.circe.syntax._

final case class TableFieldSchemaCategories(
    /** Deprecated.
      */
    names: Option[List[String]] = None
)
object TableFieldSchemaCategories {
  implicit val encoder: Encoder[
    TableFieldSchemaCategories
  ] = Encoder.instance(x => Json.obj("names" := x.names))
  implicit val decoder: Decoder[
    TableFieldSchemaCategories
  ] = Decoder.instance { c =>
    for {
      v0 <- c.get[Option[List[String]]]("names")
    } yield TableFieldSchemaCategories(v0)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy