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

src.testing.v1.GetDeviceSessionArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.testing.v1

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy