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

scala.googleapis.bigquery.UndeleteDatasetRequest.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 UndeleteDatasetRequest(
    /** Optional. The exact time when the dataset was deleted. If not specified, the most recently deleted version is undeleted. Undeleting a dataset using deletion time is not supported.
      */
    deletionTime: Option[String] = None
)
object UndeleteDatasetRequest {
  implicit val encoder: Encoder[UndeleteDatasetRequest] = Encoder.instance { x =>
    Json.obj("deletionTime" := x.deletionTime)
  }
  implicit val decoder: Decoder[
    UndeleteDatasetRequest
  ] = Decoder.instance { c =>
    for {
      v0 <- c.get[Option[String]]("deletionTime")
    } yield UndeleteDatasetRequest(v0)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy