Struct google_jobs4::api::CompensationEntry[][src]

pub struct CompensationEntry {
    pub amount: Option<Money>,
    pub description: Option<String>,
    pub expected_units_per_year: Option<f64>,
    pub range: Option<CompensationRange>,
    pub type_: Option<String>,
    pub unit: Option<String>,
}

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.

This type is not used in any activity, and only used as part of another schema.

Fields

amount: Option<Money>

Compensation amount.

description: Option<String>

Compensation description. For example, could indicate equity terms or provide additional context to an estimated bonus.

expected_units_per_year: Option<f64>

Expected number of units paid each year. If not specified, when Job.employment_types is FULLTIME, a default value is inferred based on unit. Default values: - HOURLY: 2080 - DAILY: 260 - WEEKLY: 52 - MONTHLY: 12 - ANNUAL: 1

range: Option<CompensationRange>

Compensation range.

type_: Option<String>

Compensation type. Default is CompensationType.COMPENSATION_TYPE_UNSPECIFIED.

unit: Option<String>

Frequency of the specified amount. Default is CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED.

Trait Implementations

impl Clone for CompensationEntry[src]

impl Debug for CompensationEntry[src]

impl Default for CompensationEntry[src]

impl<'de> Deserialize<'de> for CompensationEntry[src]

impl Part for CompensationEntry[src]

impl Serialize for CompensationEntry[src]

Auto Trait Implementations

impl RefUnwindSafe for CompensationEntry[src]

impl Send for CompensationEntry[src]

impl Sync for CompensationEntry[src]

impl Unpin for CompensationEntry[src]

impl UnwindSafe for CompensationEntry[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.