Compensation Entry Args
data class CompensationEntryArgs(val amount: Output<MoneyArgs>? = null, val description: Output<String>? = null, val expectedUnitsPerYear: Output<Double>? = null, val range: Output<CompensationRangeArgs>? = null, val type: Output<CompensationEntryType>? = null, val unit: Output<CompensationEntryUnit>? = null) : ConvertibleToJava<CompensationEntryArgs>
A compensation entry that represents one component of compensation, such as base pay, bonus, or other compensation type. Annualization: One compensation entry can be annualized if - it contains valid amount or range. - and its expected_units_per_year is set or can be derived. Its annualized range is determined as (amount or range) times expected_units_per_year.
Constructors
Link copied to clipboard
fun CompensationEntryArgs(amount: Output<MoneyArgs>? = null, description: Output<String>? = null, expectedUnitsPerYear: Output<Double>? = null, range: Output<CompensationRangeArgs>? = null, type: Output<CompensationEntryType>? = null, unit: Output<CompensationEntryUnit>? = null)