Struct google_adsense1d4::AccountMethods [] [src]

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

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate yup_oauth2 as oauth2;
extern crate google_adsense1d4 as adsense1d4;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use adsense1d4::AdSense;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::new(),
                              <MemoryStorage as Default>::default(), None);
let mut hub = AdSense::new(hyper::Client::new(), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `adclients_list(...)`, `adunits_customchannels_list(...)`, `adunits_get(...)`, `adunits_get_ad_code(...)`, `adunits_list(...)`, `alerts_delete(...)`, `alerts_list(...)`, `customchannels_adunits_list(...)`, `customchannels_get(...)`, `customchannels_list(...)`, `get(...)`, `list(...)`, `payments_list(...)`, `reports_generate(...)`, `reports_saved_generate(...)`, `reports_saved_list(...)`, `savedadstyles_get(...)`, `savedadstyles_list(...)` and `urlchannels_list(...)`
// to build up your call.
let rb = hub.accounts();

Methods

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

Create a builder to help you perform the following task:

Dismiss (delete) the specified alert from the specified publisher AdSense account.

Arguments

  • accountId - Account which contains the ad unit.
  • alertId - Alert to delete.

Create a builder to help you perform the following task:

List the alerts for the specified AdSense account.

Arguments

  • accountId - Account for which to retrieve the alerts.

Create a builder to help you perform the following task:

Generate an AdSense report based on the saved report ID sent in the query parameters.

Arguments

  • accountId - Account to which the saved reports belong.
  • savedReportId - The saved report to retrieve.

Create a builder to help you perform the following task:

List all accounts available to this AdSense account.

Create a builder to help you perform the following task:

List the payments for the specified AdSense account.

Arguments

  • accountId - Account for which to retrieve the payments.

Create a builder to help you perform the following task:

List a specific saved ad style for the specified account.

Arguments

  • accountId - Account for which to get the saved ad style.
  • savedAdStyleId - Saved ad style to retrieve.

Create a builder to help you perform the following task:

Gets the specified ad unit in the specified ad client for the specified account.

Arguments

  • accountId - Account to which the ad client belongs.
  • adClientId - Ad client for which to get the ad unit.
  • adUnitId - Ad unit to retrieve.

Create a builder to help you perform the following task:

Get the specified custom channel from the specified ad client for the specified account.

Arguments

  • accountId - Account to which the ad client belongs.
  • adClientId - Ad client which contains the custom channel.
  • customChannelId - Custom channel to retrieve.

Create a builder to help you perform the following task:

List all ad units in the specified custom channel.

Arguments

  • accountId - Account to which the ad client belongs.
  • adClientId - Ad client which contains the custom channel.
  • customChannelId - Custom channel for which to list ad units.

Create a builder to help you perform the following task:

List all saved reports in the specified AdSense account.

Arguments

  • accountId - Account to which the saved reports belong.

Create a builder to help you perform the following task:

List all URL channels in the specified ad client for the specified account.

Arguments

  • accountId - Account to which the ad client belongs.
  • adClientId - Ad client for which to list URL channels.

Create a builder to help you perform the following task:

List all ad units in the specified ad client for the specified account.

Arguments

  • accountId - Account to which the ad client belongs.
  • adClientId - Ad client for which to list ad units.

Create a builder to help you perform the following task:

Generate an AdSense report based on the report request sent in the query parameters. Returns the result as JSON; to retrieve output in CSV format specify "alt=csv" as a query parameter.

Arguments

  • accountId - Account upon which to report.
  • startDate - Start of the date range to report on in "YYYY-MM-DD" format, inclusive.
  • endDate - End of the date range to report on in "YYYY-MM-DD" format, inclusive.

Create a builder to help you perform the following task:

List all ad clients in the specified account.

Arguments

  • accountId - Account for which to list ad clients.

Create a builder to help you perform the following task:

List all custom channels in the specified ad client for the specified account.

Arguments

  • accountId - Account to which the ad client belongs.
  • adClientId - Ad client for which to list custom channels.

Create a builder to help you perform the following task:

List all saved ad styles in the specified account.

Arguments

  • accountId - Account for which to list saved ad styles.

Create a builder to help you perform the following task:

Get ad code for the specified ad unit.

Arguments

  • accountId - Account which contains the ad client.
  • adClientId - Ad client with contains the ad unit.
  • adUnitId - Ad unit to get the code for.

Create a builder to help you perform the following task:

List all custom channels which the specified ad unit belongs to.

Arguments

  • accountId - Account to which the ad client belongs.
  • adClientId - Ad client which contains the ad unit.
  • adUnitId - Ad unit for which to list custom channels.

Create a builder to help you perform the following task:

Get information about the selected AdSense account.

Arguments

  • accountId - Account to get information about.

Trait Implementations

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