Struct google_jobs3::CompensationRange[][src]

pub struct CompensationRange {
    pub min_compensation: Option<Money>,
    pub max_compensation: Option<Money>,
}

Compensation range.

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

Fields

Optional.

The minimum amount of compensation. If left empty, the value is set to zero and the currency code is set to match the currency code of max_compensation.

Optional.

The maximum amount of compensation. If left empty, the value is set to a maximal compensation value and the currency code is set to match the currency code of min_compensation.

Trait Implementations

impl Default for CompensationRange
[src]

Returns the "default value" for a type. Read more

impl Clone for CompensationRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CompensationRange
[src]

Formats the value using the given formatter. Read more

impl Part for CompensationRange
[src]

Auto Trait Implementations