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

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

There is a newer version: 0.6.1-v2-20241111
Show newest version
package googleapis.bigquery

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

final case class InputDataChange(
    /** Output only. Records read difference percentage compared to a previous run.
      */
    recordsReadDiffPercentage: Option[Double] = None
)
object InputDataChange {
  implicit val encoder: Encoder[InputDataChange] = Encoder.instance { x =>
    Json.obj("recordsReadDiffPercentage" := x.recordsReadDiffPercentage)
  }
  implicit val decoder: Decoder[InputDataChange] = Decoder.instance { c =>
    for {
      v0 <- c.get[Option[Double]]("recordsReadDiffPercentage")
    } yield InputDataChange(v0)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy