Struct google_jobs3::UpdateCompanyRequest[][src]

pub struct UpdateCompanyRequest {
    pub company: Option<Company>,
    pub update_mask: Option<String>,
}

Input only.

Request for updating a specified company.

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 company resource to replace the current resource in the system.

Optional but strongly recommended for the best service experience.

If update_mask is provided, only the specified fields in company are updated. Otherwise all the fields are updated.

A field mask to specify the company fields to be updated. Only top level fields of Company are supported.

Trait Implementations

impl Default for UpdateCompanyRequest
[src]

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

impl Clone for UpdateCompanyRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UpdateCompanyRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for UpdateCompanyRequest
[src]

Auto Trait Implementations