[][src]Struct gcp_client::google::cloud::talent::v4beta1::compensation_info::CompensationEntry

pub struct CompensationEntry {
    pub type: i32,
    pub unit: i32,
    pub description: String,
    pub expected_units_per_year: Option<f64>,
    pub compensation_amount: Option<CompensationAmount>,
}

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][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.amount] or [range][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.range].
  • and its [expected_units_per_year][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.expected_units_per_year] is set or can be derived. Its annualized range is determined as ([amount][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.amount] or [range][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.range]) times [expected_units_per_year][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.expected_units_per_year].

Fields

type: i32

Compensation type.

Default is [CompensationType.COMPENSATION_TYPE_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationType.COMPENSATION_TYPE_UNSPECIFIED].

unit: i32

Frequency of the specified amount.

Default is [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED].

description: 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][google.cloud.talent.v4beta1.Job.employment_types] is FULLTIME, a default value is inferred based on [unit][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.unit]. Default values:

  • HOURLY: 2080
  • DAILY: 260
  • WEEKLY: 52
  • MONTHLY: 12
  • ANNUAL: 1
compensation_amount: Option<CompensationAmount>

Compensation amount. It could be a fixed amount or a floating range.

Implementations

impl CompensationEntry[src]

pub fn type(&self) -> CompensationType[src]

Returns the enum value of type, or the default if the field is set to an invalid enum value.

pub fn set_type(&mut self, value: CompensationType)[src]

Sets type to the provided enum value.

pub fn unit(&self) -> CompensationUnit[src]

Returns the enum value of unit, or the default if the field is set to an invalid enum value.

pub fn set_unit(&mut self, value: CompensationUnit)[src]

Sets unit to the provided enum value.

Trait Implementations

impl Clone for CompensationEntry[src]

impl Debug for CompensationEntry[src]

impl Default for CompensationEntry[src]

impl Message for CompensationEntry[src]

impl PartialEq<CompensationEntry> for CompensationEntry[src]

impl StructuralPartialEq for CompensationEntry[src]

Auto Trait Implementations

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> 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> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]