Struct google_jobs3::HistogramFacets[][src]

pub struct HistogramFacets {
    pub simple_histogram_facets: Option<Vec<String>>,
    pub custom_attribute_histogram_facets: Option<Vec<CustomAttributeHistogramRequest>>,
    pub compensation_histogram_facets: Option<Vec<CompensationHistogramRequest>>,
}

Input only.

Histogram facets to be specified in SearchJobsRequest.

This type is not used in any activity, and only used as part of another schema.

Fields

Optional.

Specifies the simple type of histogram facets, for example, COMPANY_SIZE, EMPLOYMENT_TYPE etc.

Optional.

Specifies the custom attributes histogram requests. Duplicate values of CustomAttributeHistogramRequest.key are not allowed.

Optional.

Specifies compensation field-based histogram requests. Duplicate values of CompensationHistogramRequest.type are not allowed.

Trait Implementations

impl Default for HistogramFacets
[src]

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

impl Clone for HistogramFacets
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HistogramFacets
[src]

Formats the value using the given formatter. Read more

impl Part for HistogramFacets
[src]

Auto Trait Implementations