Struct google_indexing3::UrlNotification[][src]

pub struct UrlNotification {
    pub url: Option<String>,
    pub notify_time: Option<String>,
    pub type_: Option<String>,
}

UrlNotification is the resource used in all Indexing API calls. It describes one event in the life cycle of a Web Document.

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

The object of this notification. The URL must be owned by the publisher of this notification and, in case of URL_UPDATED notifications, it must be crawlable by Google.

Creation timestamp for this notification. Users should not specify it, the field is ignored at the request time.

The URL life cycle event that Google is being notified about.

Trait Implementations

impl Default for UrlNotification
[src]

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

impl Clone for UrlNotification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UrlNotification
[src]

Formats the value using the given formatter. Read more

impl RequestValue for UrlNotification
[src]

impl Resource for UrlNotification
[src]

Auto Trait Implementations