
src.contactcenterinsights.v1.ViewArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.contactcenterinsights.v1
final case class ViewArgs private(
displayName: besom.types.Output[scala.Option[String]],
location: besom.types.Output[scala.Option[String]],
name: besom.types.Output[scala.Option[String]],
project: besom.types.Output[scala.Option[String]],
value: besom.types.Output[scala.Option[String]]
)
object ViewArgs:
def apply(
displayName: besom.types.Input.Optional[String] = scala.None,
location: besom.types.Input.Optional[String] = scala.None,
name: besom.types.Input.Optional[String] = scala.None,
project: besom.types.Input.Optional[String] = scala.None,
value: besom.types.Input.Optional[String] = scala.None
)(using besom.types.Context): ViewArgs =
new ViewArgs(
displayName = displayName.asOptionOutput(isSecret = false),
location = location.asOptionOutput(isSecret = false),
name = name.asOptionOutput(isSecret = false),
project = project.asOptionOutput(isSecret = false),
value = value.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[ViewArgs] =
besom.internal.Encoder.derived[ViewArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[ViewArgs] =
besom.internal.ArgsEncoder.derived[ViewArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy