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