Struct google_content2::DatafeedStatusError[][src]

pub struct DatafeedStatusError {
    pub count: Option<String>,
    pub message: Option<String>,
    pub code: Option<String>,
    pub examples: Option<Vec<DatafeedStatusExample>>,
}

An error occurring in the feed, like "invalid price".

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

Fields

The number of occurrences of the error in the feed.

The error message, e.g., "Invalid price".

The code of the error, e.g., "validation/invalid_value".

A list of example occurrences of the error, grouped by product.

Trait Implementations

impl Default for DatafeedStatusError
[src]

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

impl Clone for DatafeedStatusError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DatafeedStatusError
[src]

Formats the value using the given formatter. Read more

impl Part for DatafeedStatusError
[src]

Auto Trait Implementations