Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CompensationInfo

import type { CompensationInfo } from "https://googleapis.deno.dev/v1/jobs:v4.ts";

Job compensation details.

interface CompensationInfo {
readonly annualizedBaseCompensationRange?: CompensationRange;
readonly annualizedTotalCompensationRange?: CompensationRange;
entries?: CompensationEntry[];
}

§Properties

§
readonly annualizedBaseCompensationRange?: CompensationRange
[src]

Output only. Annualized base compensation range. Computed as base compensation entry's CompensationEntry.amount times CompensationEntry.expected_units_per_year. See CompensationEntry for explanation on compensation annualization.

§
readonly annualizedTotalCompensationRange?: CompensationRange
[src]

Output only. Annualized total compensation range. Computed as all compensation entries' CompensationEntry.amount times CompensationEntry.expected_units_per_year. See CompensationEntry for explanation on compensation annualization.

§

Job compensation information. At most one entry can be of type CompensationInfo.CompensationType.BASE, which is referred as base compensation entry for the job.