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

src.firebase.v1beta1.GetWebAppArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.firebase.v1beta1

final case class GetWebAppArgs private(
  project: besom.types.Output[scala.Option[String]],
  webAppId: besom.types.Output[String]
)

object GetWebAppArgs:
  def apply(
    project: besom.types.Input.Optional[String] = scala.None,
    webAppId: besom.types.Input[String]
  )(using besom.types.Context): GetWebAppArgs =
    new GetWebAppArgs(
      project = project.asOptionOutput(isSecret = false),
      webAppId = webAppId.asOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[GetWebAppArgs] =
    besom.internal.Encoder.derived[GetWebAppArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetWebAppArgs] =
    besom.internal.ArgsEncoder.derived[GetWebAppArgs]






© 2015 - 2025 Weber Informatics LLC | Privacy Policy