Struct google_jobs3::CustomAttributeHistogramRequest[][src]

pub struct CustomAttributeHistogramRequest {
    pub string_value_histogram: Option<bool>,
    pub long_value_histogram_bucketing_option: Option<NumericBucketingOption>,
    pub key: Option<String>,
}

Custom attributes histogram request. An error is thrown if neither string_value_histogram or long_value_histogram_bucketing_option has been defined.

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

Fields

Optional. If set to true, the response includes the histogram value for each key as a string.

Optional.

Specifies buckets used to perform a range histogram on Job's filterable long custom field values, or min/max value requirements.

Required.

Specifies the custom field key to perform a histogram on. If specified without long_value_histogram_bucketing_option, histogram on string values of the given key is triggered, otherwise histogram is performed on long values.

Trait Implementations

impl Default for CustomAttributeHistogramRequest
[src]

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

impl Clone for CustomAttributeHistogramRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CustomAttributeHistogramRequest
[src]

Formats the value using the given formatter. Read more

impl Part for CustomAttributeHistogramRequest
[src]

Auto Trait Implementations