Struct google_content2::api::DatafeedFetchSchedule[][src]

pub struct DatafeedFetchSchedule {
    pub day_of_month: Option<u32>,
    pub fetch_url: Option<String>,
    pub hour: Option<u32>,
    pub minute_of_hour: Option<u32>,
    pub password: Option<String>,
    pub paused: Option<bool>,
    pub time_zone: Option<String>,
    pub username: Option<String>,
    pub weekday: Option<String>,
}
Expand description

The required fields vary based on the frequency of fetching. For a monthly fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour are required. For a daily fetch schedule, only hour is required.

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

Fields

day_of_month: Option<u32>

The day of the month the feed file should be fetched (1-31).

fetch_url: Option<String>

The URL where the feed file can be fetched. Google Merchant Center will support automatic scheduled uploads using the HTTP, HTTPS, FTP, or SFTP protocols, so the value will need to be a valid link using one of those four protocols.

hour: Option<u32>

The hour of the day the feed file should be fetched (0-23).

minute_of_hour: Option<u32>

The minute of the hour the feed file should be fetched (0-59). Read-only.

password: Option<String>

An optional password for fetch_url.

paused: Option<bool>

Whether the scheduled fetch is paused or not.

time_zone: Option<String>

Time zone used for schedule. UTC by default. E.g., “America/Los_Angeles”.

username: Option<String>

An optional user name for fetch_url.

weekday: Option<String>

The day of the week the feed file should be fetched. Acceptable values are: - “monday” - “tuesday” - “wednesday” - “thursday” - “friday” - “saturday” - “sunday

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.