[][src]Struct google_content2::AccountStatusItemLevelIssue

pub struct AccountStatusItemLevelIssue {
    pub code: Option<String>,
    pub description: Option<String>,
    pub documentation: Option<String>,
    pub attribute_name: Option<String>,
    pub detail: Option<String>,
    pub num_items: Option<String>,
    pub servability: Option<String>,
    pub resolution: Option<String>,
}

There is no detailed description.

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

Fields

code: Option<String>

The error code of the issue.

description: Option<String>

A short issue description in English.

documentation: Option<String>

The URL of a web page to help with resolving this issue.

attribute_name: Option<String>

The attribute's name, if the issue is caused by a single attribute.

detail: Option<String>

A detailed issue description in English.

num_items: Option<String>

Number of items with this issue.

servability: Option<String>

How this issue affects serving of the offer.

resolution: Option<String>

Whether the issue can be resolved by the merchant.

Trait Implementations

impl Clone for AccountStatusItemLevelIssue[src]

impl Debug for AccountStatusItemLevelIssue[src]

impl Default for AccountStatusItemLevelIssue[src]

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

impl Part for AccountStatusItemLevelIssue[src]

impl Serialize for AccountStatusItemLevelIssue[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