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

src.firebaseappcheck.v1.GetDebugTokenArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.firebaseappcheck.v1

final case class GetDebugTokenArgs private(
  appId: besom.types.Output[String],
  debugTokenId: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy