Struct google_adexchangebuyer1d4::PerformanceReportMethods [] [src]

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

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate yup_oauth2 as oauth2;
extern crate google_adexchangebuyer1d4 as adexchangebuyer1d4;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use adexchangebuyer1d4::AdExchangeBuyer;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::new(),
                              <MemoryStorage as Default>::default(), None);
let mut hub = AdExchangeBuyer::new(hyper::Client::new(), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `list(...)`
// to build up your call.
let rb = hub.performance_report();

Methods

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

Create a builder to help you perform the following task:

Retrieves the authenticated user's list of performance metrics.

Arguments

  • accountId - The account id to get the reports.
  • endDateTime - The end time of the report in ISO 8601 timestamp format using UTC.
  • startDateTime - The start time of the report in ISO 8601 timestamp format using UTC.

Trait Implementations

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