Struct google_content2::DatafeedStatus[][src]

pub struct DatafeedStatus {
    pub kind: Option<String>,
    pub errors: Option<Vec<DatafeedStatusError>>,
    pub language: Option<String>,
    pub processing_status: Option<String>,
    pub items_total: Option<String>,
    pub country: Option<String>,
    pub warnings: Option<Vec<DatafeedStatusError>>,
    pub last_upload_date: Option<String>,
    pub items_valid: Option<String>,
    pub datafeed_id: Option<String>,
}

The status of a datafeed, i.e., the result of the last retrieval of the datafeed computed asynchronously when the feed processing is finished.

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

Identifies what kind of resource this is. Value: the fixed string "content#datafeedStatus".

The list of errors occurring in the feed.

The two-letter ISO 639-1 language for which the status is reported.

The processing status of the feed.

The number of items in the feed that were processed.

The country for which the status is reported, represented as a CLDR territory code.

The list of errors occurring in the feed.

The last date at which the feed was uploaded.

The number of items in the feed that were valid.

The ID of the feed for which the status is reported.

Trait Implementations

impl Default for DatafeedStatus
[src]

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

impl Clone for DatafeedStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DatafeedStatus
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for DatafeedStatus
[src]

Auto Trait Implementations