Struct gapi_grpc::google::ads::googleads::v5::resources::KeywordPlanCampaignKeyword[][src]

pub struct KeywordPlanCampaignKeyword {
    pub resource_name: String,
    pub keyword_plan_campaign: Option<String>,
    pub id: Option<i64>,
    pub text: Option<String>,
    pub match_type: i32,
    pub negative: Option<bool>,
}

A Keyword Plan Campaign keyword. Only negative keywords are supported for Campaign Keyword.

Fields

resource_name: String

Immutable. The resource name of the Keyword Plan Campaign keyword. KeywordPlanCampaignKeyword resource names have the form:

customers/{customer_id}/keywordPlanCampaignKeywords/{kp_campaign_keyword_id}

keyword_plan_campaign: Option<String>

The Keyword Plan campaign to which this negative keyword belongs.

id: Option<i64>

Output only. The ID of the Keyword Plan negative keyword.

text: Option<String>

The keyword text.

match_type: i32

The keyword match type.

negative: Option<bool>

Immutable. If true, the keyword is negative. Must be set to true. Only negative campaign keywords are supported.

Implementations

impl KeywordPlanCampaignKeyword[src]

pub fn match_type(&self) -> KeywordMatchType[src]

Returns the enum value of match_type, or the default if the field is set to an invalid enum value.

pub fn set_match_type(&mut self, value: KeywordMatchType)[src]

Sets match_type to the provided enum value.

Trait Implementations

impl Clone for KeywordPlanCampaignKeyword[src]

impl Debug for KeywordPlanCampaignKeyword[src]

impl Default for KeywordPlanCampaignKeyword[src]

impl Message for KeywordPlanCampaignKeyword[src]

impl PartialEq<KeywordPlanCampaignKeyword> for KeywordPlanCampaignKeyword[src]

impl StructuralPartialEq for KeywordPlanCampaignKeyword[src]

Auto Trait Implementations

impl RefUnwindSafe for KeywordPlanCampaignKeyword

impl Send for KeywordPlanCampaignKeyword

impl Sync for KeywordPlanCampaignKeyword

impl Unpin for KeywordPlanCampaignKeyword

impl UnwindSafe for KeywordPlanCampaignKeyword

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]