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

pub struct CampaignCriterion {
    pub resource_name: String,
    pub campaign: String,
    pub criterion_id: i64,
    pub bid_modifier: f32,
    pub negative: bool,
    pub type: i32,
    pub status: i32,
    pub criterion: Option<Criterion>,
}

A campaign criterion.

Fields

resource_name: String

Immutable. The resource name of the campaign criterion. Campaign criterion resource names have the form:

customers/{customer_id}/campaignCriteria/{campaign_id}~{criterion_id}

campaign: String

Immutable. The campaign to which the criterion belongs.

criterion_id: i64

Output only. The ID of the criterion.

This field is ignored during mutate.

bid_modifier: f32

The modifier for the bids when the criterion matches. The modifier must be in the range: 0.1 - 10.0. Most targetable criteria types support modifiers. Use 0 to opt out of a Device type.

negative: bool

Immutable. Whether to target (false) or exclude (true) the criterion.

type: i32

Output only. The type of the criterion.

status: i32

The status of the criterion.

criterion: Option<Criterion>

The campaign criterion.

Exactly one must be set.

Implementations

impl CampaignCriterion[src]

pub fn type(&self) -> CriterionType[src]

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

pub fn set_type(&mut self, value: CriterionType)[src]

Sets type to the provided enum value.

pub fn status(&self) -> CampaignCriterionStatus[src]

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

pub fn set_status(&mut self, value: CampaignCriterionStatus)[src]

Sets status to the provided enum value.

Trait Implementations

impl Clone for CampaignCriterion[src]

impl Debug for CampaignCriterion[src]

impl Default for CampaignCriterion[src]

impl Message for CampaignCriterion[src]

impl PartialEq<CampaignCriterion> for CampaignCriterion[src]

impl StructuralPartialEq for CampaignCriterion[src]

Auto Trait Implementations

impl RefUnwindSafe for CampaignCriterion

impl Send for CampaignCriterion

impl Sync for CampaignCriterion

impl Unpin for CampaignCriterion

impl UnwindSafe for CampaignCriterion

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]