[][src]Struct google_displayvideo1::InventorySourceStatus

pub struct InventorySourceStatus {
    pub seller_pause_reason: Option<String>,
    pub entity_status: Option<String>,
    pub entity_pause_reason: Option<String>,
    pub config_status: Option<String>,
    pub seller_status: Option<String>,
}

The status related settings of the inventory source.

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

Fields

seller_pause_reason: Option<String>

Output only. The seller-provided reason for pausing this inventory source.

Only applicable for inventory sources synced directly from the publishers and when seller_status is set to ENTITY_STATUS_PAUSED.

entity_status: Option<String>

Whether or not the inventory source is servable.

Acceptable values are ENTITY_STATUS_ACTIVE, ENTITY_STATUS_ARCHIVED, and ENTITY_STATUS_PAUSED. Default value is ENTITY_STATUS_ACTIVE.

entity_pause_reason: Option<String>

The user-provided reason for pausing this inventory source.

Must not exceed 100 characters.

Only applicable when entity_status is set to ENTITY_STATUS_PAUSED.

config_status: Option<String>

Output only. The configuration status of the inventory source.

Only applicable for guaranteed inventory sources. Acceptable values are INVENTORY_SOURCE_CONFIG_STATUS_PENDING and INVENTORY_SOURCE_CONFIG_STATUS_COMPLETED.

An inventory source must be configured (fill in the required fields, choose creatives, and select a default campaign) before it can serve.

seller_status: Option<String>

Output only. The status set by the seller for the inventory source.

Only applicable for inventory sources synced directly from the publishers. Acceptable values are ENTITY_STATUS_ACTIVE and ENTITY_STATUS_PAUSED.

Trait Implementations

impl Clone for InventorySourceStatus[src]

impl Debug for InventorySourceStatus[src]

impl Default for InventorySourceStatus[src]

impl<'de> Deserialize<'de> for InventorySourceStatus[src]

impl Part for InventorySourceStatus[src]

impl Serialize for InventorySourceStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any