[][src]Struct google_jobs3::Company

pub struct Company {
    pub display_name: Option<String>,
    pub name: Option<String>,
    pub career_site_uri: Option<String>,
    pub derived_info: Option<CompanyDerivedInfo>,
    pub eeo_text: Option<String>,
    pub image_uri: Option<String>,
    pub headquarters_address: Option<String>,
    pub external_id: Option<String>,
    pub website_uri: Option<String>,
    pub suspended: Option<bool>,
    pub hiring_agency: Option<bool>,
    pub keyword_searchable_job_custom_attributes: Option<Vec<String>>,
    pub size: Option<String>,
}

A Company resource represents a company in the service. A company is the entity that owns job postings, that is, the hiring entity responsible for employing applicants for the job position.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

display_name: Option<String>

Required.

The display name of the company, for example, "Google, LLC".

name: Option<String>

Required during company update.

The resource name for a company. This is generated by the service when a company is created.

The format is "projects/{project_id}/companies/{company_id}", for example, "projects/api-test-project/companies/foo".

career_site_uri: Option<String>

Optional.

The URI to employer's career site or careers page on the employer's web site, for example, "https://careers.google.com".

derived_info: Option<CompanyDerivedInfo>

Output only. Derived details about the company.

eeo_text: Option<String>

Optional.

Equal Employment Opportunity legal disclaimer text to be associated with all jobs, and typically to be displayed in all roles.

The maximum number of allowed characters is 500.

image_uri: Option<String>

Optional.

A URI that hosts the employer's company logo.

headquarters_address: Option<String>

Optional.

The street address of the company's main headquarters, which may be different from the job location. The service attempts to geolocate the provided address, and populates a more specific location wherever possible in DerivedInfo.headquarters_location.

external_id: Option<String>

Required.

Client side company identifier, used to uniquely identify the company.

The maximum number of allowed characters is 255.

website_uri: Option<String>

Optional.

The URI representing the company's primary web site or home page, for example, "https://www.google.com".

The maximum number of allowed characters is 255.

suspended: Option<bool>

Output only. Indicates whether a company is flagged to be suspended from public availability by the service when job content appears suspicious, abusive, or spammy.

hiring_agency: Option<bool>

Optional.

Set to true if it is the hiring agency that post jobs for other employers.

Defaults to false if not provided.

keyword_searchable_job_custom_attributes: Option<Vec<String>>

Optional.

A list of keys of filterable Job.custom_attributes, whose corresponding string_values are used in keyword search. Jobs with string_values under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes.

size: Option<String>

Optional.

The employer's company size.

Trait Implementations

impl ResponseResult for Company[src]

impl Default for Company[src]

impl Clone for Company[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Company[src]

impl Serialize for Company[src]

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

Auto Trait Implementations

impl Send for Company

impl Unpin for Company

impl Sync for Company

impl UnwindSafe for Company

impl RefUnwindSafe for Company

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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