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

scala.googleapis.bigquery.JobCancelResponse.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 JobCancelResponse(
    /** The final state of the job.
      */
    job: Option[Job] = None,
    /** The resource type of the response.
      */
    kind: Option[String] = None,
)
object JobCancelResponse {
  implicit val encoder: Encoder[JobCancelResponse] = Encoder.instance { x =>
    Json.obj("job" := x.job, "kind" := x.kind)
  }
  implicit val decoder: Decoder[JobCancelResponse] = Decoder.instance { c =>
    for {
      v0 <- c.get[Option[Job]]("job")
      v1 <- c.get[Option[String]]("kind")
    } yield JobCancelResponse(v0, v1)

  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy