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

scala.googleapis.firebase.AddFirebaseRequest.scala Maven / Gradle / Ivy

There is a newer version: 0.4.5-v1beta1-20240918
Show newest version
package googleapis.firebase

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

final case class AddFirebaseRequest(
    /** Deprecated. Instead, to set a Project's default GCP resource location, call [`FinalizeDefaultLocation`](../projects.defaultLocation/finalize) after you add Firebase resources to the GCP `Project`. The ID of the Project's default GCP resource location. The location must be one of the available [GCP resource locations](https://firebase.google.com/docs/projects/locations).
      */
    locationId: Option[String] = None
)
object AddFirebaseRequest {
  implicit val encoder: Encoder[AddFirebaseRequest] = Encoder.instance { x =>
    Json.obj("locationId" := x.locationId)
  }
  implicit val decoder: Decoder[AddFirebaseRequest] = Decoder.instance { c =>
    for {
      v0 <- c.get[Option[String]]("locationId")
    } yield AddFirebaseRequest(v0)

  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy