Struct gapi_grpc::google::cloud::talent::v4beta1::EmploymentRecord[][src]

pub struct EmploymentRecord {
    pub start_date: Option<Date>,
    pub end_date: Option<Date>,
    pub employer_name: String,
    pub division_name: String,
    pub address: Option<Address>,
    pub job_title: String,
    pub job_description: String,
    pub is_supervisor: Option<bool>,
    pub is_self_employed: Option<bool>,
    pub is_current: Option<bool>,
    pub job_title_snippet: String,
    pub job_description_snippet: String,
    pub employer_name_snippet: String,
}

Resource that represents an employment record of a candidate.

Fields

start_date: Option<Date>

Start date of the employment.

end_date: Option<Date>

End date of the employment.

employer_name: String

The name of the employer company/organization.

For example, “Google”, “Alphabet”, and so on.

Number of characters allowed is 250.

division_name: String

The division name of the employment.

For example, division, department, client, and so on.

Number of characters allowed is 100.

address: Option<Address>

The physical address of the employer.

job_title: String

The job title of the employment.

For example, “Software Engineer”, “Data Scientist”, and so on.

Number of characters allowed is 250.

job_description: String

The description of job content.

Number of characters allowed is 100,000.

is_supervisor: Option<bool>

If the jobs is a supervisor position.

is_self_employed: Option<bool>

If this employment is self-employed.

is_current: Option<bool>

If this employment is current.

job_title_snippet: String

Output only. The job title snippet shows how the [job_title][google.cloud.talent.v4beta1.EmploymentRecord.job_title] is related to a search query. It’s empty if the [job_title][google.cloud.talent.v4beta1.EmploymentRecord.job_title] isn’t related to the search query.

job_description_snippet: String

Output only. The job description snippet shows how the [job_description][google.cloud.talent.v4beta1.EmploymentRecord.job_description] is related to a search query. It’s empty if the [job_description][google.cloud.talent.v4beta1.EmploymentRecord.job_description] isn’t related to the search query.

employer_name_snippet: String

Output only. The employer name snippet shows how the [employer_name][google.cloud.talent.v4beta1.EmploymentRecord.employer_name] is related to a search query. It’s empty if the [employer_name][google.cloud.talent.v4beta1.EmploymentRecord.employer_name] isn’t related to the search query.

Trait Implementations

impl Clone for EmploymentRecord[src]

impl Debug for EmploymentRecord[src]

impl Default for EmploymentRecord[src]

impl Message for EmploymentRecord[src]

impl PartialEq<EmploymentRecord> for EmploymentRecord[src]

impl StructuralPartialEq for EmploymentRecord[src]

Auto Trait Implementations

impl RefUnwindSafe for EmploymentRecord

impl Send for EmploymentRecord

impl Sync for EmploymentRecord

impl Unpin for EmploymentRecord

impl UnwindSafe for EmploymentRecord

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]