Struct google_content2_sandbox::OrderCancellation[][src]

pub struct OrderCancellation {
    pub quantity: Option<u32>,
    pub reason: Option<String>,
    pub creation_date: Option<String>,
    pub actor: Option<String>,
    pub reason_text: Option<String>,
}

There is no detailed description.

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

Fields

The quantity that was canceled.

The reason for the cancellation. Orders that are cancelled with a noInventory reason will lead to the removal of the product from Shopping Actions until you make an update to that product. This will not affect your Shopping ads.

Date on which the cancellation has been created, in ISO 8601 format.

The actor that created the cancellation.

The explanation of the reason.

Trait Implementations

impl Default for OrderCancellation
[src]

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

impl Clone for OrderCancellation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OrderCancellation
[src]

Formats the value using the given formatter. Read more

impl Part for OrderCancellation
[src]

Auto Trait Implementations