AmountArgs

data class AmountArgs(val currency: Output<String>? = null, val value: Output<Double>? = null) : ConvertibleToJava<AmountArgs>

The amount.

Constructors

Link copied to clipboard
constructor(currency: Output<String>? = null, value: Output<Double>? = null)

Properties

Link copied to clipboard
val currency: Output<String>? = null

The type of currency being used for the value.

Link copied to clipboard
val value: Output<Double>? = null

Amount value.

Functions

Link copied to clipboard
open override fun toJava(): AmountArgs