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

pub struct AdParameter {
    pub resource_name: String,
    pub ad_group_criterion: String,
    pub parameter_index: i64,
    pub insertion_text: String,
}

An ad parameter that is used to update numeric values (such as prices or inventory levels) in any text line of an ad (including URLs). There can be a maximum of two AdParameters per ad group criterion. (One with parameter_index = 1 and one with parameter_index = 2.) In the ad the parameters are referenced by a placeholder of the form “{param#:value}”. E.g. “{param1:$17}”

Fields

resource_name: String

Immutable. The resource name of the ad parameter. Ad parameter resource names have the form:

customers/{customer_id}/adParameters/{ad_group_id}~{criterion_id}~{parameter_index}

ad_group_criterion: String

Immutable. The ad group criterion that this ad parameter belongs to.

parameter_index: i64

Immutable. The unique index of this ad parameter. Must be either 1 or 2.

insertion_text: String

Numeric value to insert into the ad text. The following restrictions apply:

Trait Implementations

impl Clone for AdParameter[src]

impl Debug for AdParameter[src]

impl Default for AdParameter[src]

impl Message for AdParameter[src]

impl PartialEq<AdParameter> for AdParameter[src]

impl StructuralPartialEq for AdParameter[src]

Auto Trait Implementations

impl RefUnwindSafe for AdParameter

impl Send for AdParameter

impl Sync for AdParameter

impl Unpin for AdParameter

impl UnwindSafe for AdParameter

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]