Struct google_dfareporting2d6::DynamicTargetingKeyMethods [] [src]

pub struct DynamicTargetingKeyMethods<'a, C, A> where
    C: 'a,
    A: 'a, 
{ /* fields omitted */ }

A builder providing access to all methods supported on dynamicTargetingKey resources. It is not used directly, but through the Dfareporting hub.

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_dfareporting2d6 as dfareporting2d6;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use dfareporting2d6::Dfareporting;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())),
                              <MemoryStorage as Default>::default(), None);
let mut hub = Dfareporting::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `delete(...)`, `insert(...)` and `list(...)`
// to build up your call.
let rb = hub.dynamic_targeting_keys();

Methods

impl<'a, C, A> DynamicTargetingKeyMethods<'a, C, A>
[src]

[src]

Create a builder to help you perform the following task:

Deletes an existing dynamic targeting key.

Arguments

  • profileId - User profile ID associated with this request.
  • objectId - ID of the object of this dynamic targeting key. This is a required field.
  • name - Name of this dynamic targeting key. This is a required field. Must be less than 256 characters long and cannot contain commas. All characters are converted to lowercase.
  • objectType - Type of the object of this dynamic targeting key. This is a required field.

[src]

Create a builder to help you perform the following task:

Retrieves a list of dynamic targeting keys.

Arguments

  • profileId - User profile ID associated with this request.

[src]

Create a builder to help you perform the following task:

Inserts a new dynamic targeting key. Keys must be created at the advertiser level before being assigned to the advertiser's ads, creatives, or placements. There is a maximum of 1000 keys per advertiser, out of which a maximum of 20 keys can be assigned per ad, creative, or placement.

Arguments

  • request - No description provided.
  • profileId - User profile ID associated with this request.

Trait Implementations

impl<'a, C, A> MethodsBuilder for DynamicTargetingKeyMethods<'a, C, A>
[src]