[][src]Struct google_realtimebidding1::PolicyTopicEntry

pub struct PolicyTopicEntry {
    pub help_center_url: Option<String>,
    pub policy_topic: Option<String>,
    pub evidences: Option<Vec<PolicyTopicEvidence>>,
}

Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.

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

Fields

help_center_url: Option<String>

URL of the help center article describing this policy topic.

policy_topic: Option<String>

Policy topic this entry refers to. For example, "ALCOHOL", "TRADEMARKS_IN_AD_TEXT", or "DESTINATION_NOT_WORKING". The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method

evidences: Option<Vec<PolicyTopicEvidence>>

Pieces of evidence associated with this policy topic entry.

Trait Implementations

impl Clone for PolicyTopicEntry[src]

impl Debug for PolicyTopicEntry[src]

impl Default for PolicyTopicEntry[src]

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

impl Part for PolicyTopicEntry[src]

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