[][src]Struct gcp_client::google::cloud::talent::v4beta1::Application

pub struct Application {
    pub name: String,
    pub external_id: String,
    pub profile: String,
    pub job: String,
    pub company: String,
    pub application_date: Option<Date>,
    pub stage: i32,
    pub state: i32,
    pub interviews: Vec<Interview>,
    pub referral: Option<bool>,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub outcome_notes: String,
    pub outcome: i32,
    pub is_match: Option<bool>,
    pub job_title_snippet: String,
}

Resource that represents a job application record of a candidate.

Fields

name: String

Required during application update.

Resource name assigned to an application by the API.

The format is "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}/applications/{application_id}". For example, "projects/foo/tenants/bar/profiles/baz/applications/qux".

external_id: String

Required. Client side application identifier, used to uniquely identify the application.

The maximum number of allowed characters is 255.

profile: String

Output only. Resource name of the candidate of this application.

The format is "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}". For example, "projects/foo/tenants/bar/profiles/baz".

job: String

Required. Resource name of the job which the candidate applied for.

The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}". For example, "projects/foo/tenants/bar/jobs/baz".

company: String

Resource name of the company which the candidate applied for.

The format is "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}". For example, "projects/foo/tenants/bar/companies/baz".

application_date: Option<Date>

The application date.

stage: i32

Required. What is the most recent stage of the application (that is, new, screen, send cv, hired, finished work)? This field is intentionally not comprehensive of every possible status, but instead, represents statuses that would be used to indicate to the ML models good / bad matches.

state: i32

The application state.

interviews: Vec<Interview>

All interviews (screen, onsite, and so on) conducted as part of this application (includes details such as user conducting the interview, timestamp, feedback, and so on).

referral: Option<bool>

If the candidate is referred by a employee.

create_time: Option<Timestamp>

Required. Reflects the time that the application was created.

update_time: Option<Timestamp>

The last update timestamp.

outcome_notes: String

Free text reason behind the recruitement outcome (for example, reason for withdraw / reject, reason for an unsuccessful finish, and so on).

Number of characters allowed is 100.

outcome: i32

Outcome positiveness shows how positive the outcome is.

is_match: Option<bool>

Output only. Indicates whether this job application is a match to application related filters. This value is only applicable in profile search response.

job_title_snippet: String

Output only. Job title snippet shows how the job title is related to a search query. It's empty if the job title isn't related to the search query.

Implementations

impl Application[src]

pub fn stage(&self) -> ApplicationStage[src]

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

pub fn set_stage(&mut self, value: ApplicationStage)[src]

Sets stage to the provided enum value.

pub fn state(&self) -> ApplicationState[src]

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

pub fn set_state(&mut self, value: ApplicationState)[src]

Sets state to the provided enum value.

pub fn outcome(&self) -> Outcome[src]

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

pub fn set_outcome(&mut self, value: Outcome)[src]

Sets outcome to the provided enum value.

Trait Implementations

impl Clone for Application[src]

impl Debug for Application[src]

impl Default for Application[src]

impl Message for Application[src]

impl PartialEq<Application> for Application[src]

impl StructuralPartialEq for Application[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]