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

src.cloudchannel.v1.GetEntitlementArgs.scala Maven / Gradle / Ivy

There is a newer version: 0.32.0-core.0.4
Show newest version
package besom.api.googlenative.cloudchannel.v1

final case class GetEntitlementArgs private(
  accountId: besom.types.Output[String],
  customerId: besom.types.Output[String],
  entitlementId: besom.types.Output[String]
)

object GetEntitlementArgs:
  def apply(
    accountId: besom.types.Input[String],
    customerId: besom.types.Input[String],
    entitlementId: besom.types.Input[String]
  )(using besom.types.Context): GetEntitlementArgs =
    new GetEntitlementArgs(
      accountId = accountId.asOutput(isSecret = false),
      customerId = customerId.asOutput(isSecret = false),
      entitlementId = entitlementId.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy