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

pub struct ListCompaniesRequest {
    pub parent: String,
    pub page_token: String,
    pub page_size: i32,
    pub require_open_jobs: bool,
}

List companies for which the client has ACL visibility.

Fields

parent: String

Required. Resource name of the tenant under which the company is created.

The format is "projects/{project_id}/tenants/{tenant_id}", for example, "projects/foo/tenant/bar".

If tenant id is unspecified, the default tenant will be used, for example, "projects/foo".

page_token: String

The starting indicator from which to return results.

page_size: i32

The maximum number of companies to be returned, at most 100. Default is 100 if a non-positive number is provided.

require_open_jobs: bool

Set to true if the companies requested must have open jobs.

Defaults to false.

If true, at most [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of companies are fetched, among which only those with open jobs are returned.

Trait Implementations

impl Clone for ListCompaniesRequest[src]

impl Debug for ListCompaniesRequest[src]

impl Default for ListCompaniesRequest[src]

impl Message for ListCompaniesRequest[src]

impl PartialEq<ListCompaniesRequest> for ListCompaniesRequest[src]

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