Struct google_jobs3::Company[][src]

pub struct Company {
    pub display_name: Option<String>,
    pub name: Option<String>,
    pub career_site_uri: Option<String>,
    pub headquarters_address: Option<String>,
    pub eeo_text: Option<String>,
    pub image_uri: Option<String>,
    pub derived_info: Option<CompanyDerivedInfo>,
    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

Required.

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

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".

Optional.

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

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.

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.

Optional.

A URI that hosts the employer's company logo.

Output only. Derived details about the company.

Required.

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

The maximum number of allowed characters is 255.

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.

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.

Optional.

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

Defaults to false if not provided.

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.

Optional.

The employer's company size.

Trait Implementations

impl Default for Company
[src]

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

impl Clone for Company
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Company
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for Company
[src]

Auto Trait Implementations

impl Send for Company

impl Sync for Company