remove generated libs

This commit is contained in:
OMGeeky
2024-05-12 22:15:06 +02:00
4862 changed files with 0 additions and 6416267 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,290 +0,0 @@
use super::*;
/// Central instance to access all Dfareporting related resource activities
///
/// # Examples
///
/// Instantiate a new hub
///
/// ```test_harness,no_run
/// extern crate hyper;
/// extern crate hyper_rustls;
/// extern crate google_dfareporting3d2 as dfareporting3d2;
/// use dfareporting3d2::{Result, Error};
/// # async fn dox() {
/// use std::default::Default;
/// use dfareporting3d2::{Dfareporting, oauth2, hyper, hyper_rustls, chrono, FieldMask};
///
/// // Get an ApplicationSecret instance by some means. It contains the `client_id` and
/// // `client_secret`, among other things.
/// let secret: oauth2::ApplicationSecret = Default::default();
/// // Instantiate the authenticator. It will choose a suitable authentication flow for you,
/// // unless you replace `None` with the desired Flow.
/// // Provide your own `AuthenticatorDelegate` to adjust the way it operates and get feedback about
/// // what's going on. You probably want to bring in your own `TokenStorage` to persist tokens and
/// // retrieve them from storage.
/// let auth = oauth2::InstalledFlowAuthenticator::builder(
/// secret,
/// oauth2::InstalledFlowReturnMethod::HTTPRedirect,
/// ).build().await.unwrap();
/// let mut hub = Dfareporting::new(hyper::Client::builder().build(hyper_rustls::HttpsConnectorBuilder::new().with_native_roots().https_or_http().enable_http1().build()), auth);
/// // You can configure optional parameters by calling the respective setters at will, and
/// // execute the final call using `doit()`.
/// // Values shown here are possibly random and not representative !
/// let result = hub.reports().files_list(-2, -59)
/// .sort_order(&Default::default())
/// .sort_field(&Default::default())
/// .page_token("amet.")
/// .max_results(-20)
/// .doit().await;
///
/// match result {
/// Err(e) => match e {
/// // The Error enum provides details about what exactly happened.
/// // You can also just use its `Debug`, `Display` or `Error` traits
/// Error::HttpError(_)
/// |Error::Io(_)
/// |Error::MissingAPIKey
/// |Error::MissingToken(_)
/// |Error::Cancelled
/// |Error::UploadSizeLimitExceeded(_, _)
/// |Error::Failure(_)
/// |Error::BadRequest(_)
/// |Error::FieldClash(_)
/// |Error::JsonDecodeError(_, _) => println!("{}", e),
/// },
/// Ok(res) => println!("Success: {:?}", res),
/// }
/// # }
/// ```
#[derive(Clone)]
pub struct Dfareporting<S> {
pub client: hyper::Client<S, hyper::body::Body>,
pub auth: Box<dyn client::GetToken>,
pub(super) _user_agent: String,
pub(super) _base_url: String,
pub(super) _root_url: String,
}
impl<'a, S> client::Hub for Dfareporting<S> {}
impl<'a, S> Dfareporting<S> {
pub fn new<A: 'static + client::GetToken>(client: hyper::Client<S, hyper::body::Body>, auth: A) -> Dfareporting<S> {
Dfareporting {
client,
auth: Box::new(auth),
_user_agent: "google-api-rust-client/5.0.3".to_string(),
_base_url: "https://www.googleapis.com/dfareporting/v3.2/".to_string(),
_root_url: "https://www.googleapis.com/".to_string(),
}
}
pub fn account_active_ad_summaries(&'a self) -> AccountActiveAdSummaryMethods<'a, S> {
AccountActiveAdSummaryMethods { hub: &self }
}
pub fn account_permission_groups(&'a self) -> AccountPermissionGroupMethods<'a, S> {
AccountPermissionGroupMethods { hub: &self }
}
pub fn account_permissions(&'a self) -> AccountPermissionMethods<'a, S> {
AccountPermissionMethods { hub: &self }
}
pub fn account_user_profiles(&'a self) -> AccountUserProfileMethods<'a, S> {
AccountUserProfileMethods { hub: &self }
}
pub fn accounts(&'a self) -> AccountMethods<'a, S> {
AccountMethods { hub: &self }
}
pub fn ads(&'a self) -> AdMethods<'a, S> {
AdMethods { hub: &self }
}
pub fn advertiser_groups(&'a self) -> AdvertiserGroupMethods<'a, S> {
AdvertiserGroupMethods { hub: &self }
}
pub fn advertiser_landing_pages(&'a self) -> AdvertiserLandingPageMethods<'a, S> {
AdvertiserLandingPageMethods { hub: &self }
}
pub fn advertisers(&'a self) -> AdvertiserMethods<'a, S> {
AdvertiserMethods { hub: &self }
}
pub fn browsers(&'a self) -> BrowserMethods<'a, S> {
BrowserMethods { hub: &self }
}
pub fn campaign_creative_associations(&'a self) -> CampaignCreativeAssociationMethods<'a, S> {
CampaignCreativeAssociationMethods { hub: &self }
}
pub fn campaigns(&'a self) -> CampaignMethods<'a, S> {
CampaignMethods { hub: &self }
}
pub fn change_logs(&'a self) -> ChangeLogMethods<'a, S> {
ChangeLogMethods { hub: &self }
}
pub fn cities(&'a self) -> CityMethods<'a, S> {
CityMethods { hub: &self }
}
pub fn connection_types(&'a self) -> ConnectionTypeMethods<'a, S> {
ConnectionTypeMethods { hub: &self }
}
pub fn content_categories(&'a self) -> ContentCategoryMethods<'a, S> {
ContentCategoryMethods { hub: &self }
}
pub fn conversions(&'a self) -> ConversionMethods<'a, S> {
ConversionMethods { hub: &self }
}
pub fn countries(&'a self) -> CountryMethods<'a, S> {
CountryMethods { hub: &self }
}
pub fn creative_assets(&'a self) -> CreativeAssetMethods<'a, S> {
CreativeAssetMethods { hub: &self }
}
pub fn creative_field_values(&'a self) -> CreativeFieldValueMethods<'a, S> {
CreativeFieldValueMethods { hub: &self }
}
pub fn creative_fields(&'a self) -> CreativeFieldMethods<'a, S> {
CreativeFieldMethods { hub: &self }
}
pub fn creative_groups(&'a self) -> CreativeGroupMethods<'a, S> {
CreativeGroupMethods { hub: &self }
}
pub fn creatives(&'a self) -> CreativeMethods<'a, S> {
CreativeMethods { hub: &self }
}
pub fn dimension_values(&'a self) -> DimensionValueMethods<'a, S> {
DimensionValueMethods { hub: &self }
}
pub fn directory_site_contacts(&'a self) -> DirectorySiteContactMethods<'a, S> {
DirectorySiteContactMethods { hub: &self }
}
pub fn directory_sites(&'a self) -> DirectorySiteMethods<'a, S> {
DirectorySiteMethods { hub: &self }
}
pub fn dynamic_targeting_keys(&'a self) -> DynamicTargetingKeyMethods<'a, S> {
DynamicTargetingKeyMethods { hub: &self }
}
pub fn event_tags(&'a self) -> EventTagMethods<'a, S> {
EventTagMethods { hub: &self }
}
pub fn files(&'a self) -> FileMethods<'a, S> {
FileMethods { hub: &self }
}
pub fn floodlight_activities(&'a self) -> FloodlightActivityMethods<'a, S> {
FloodlightActivityMethods { hub: &self }
}
pub fn floodlight_activity_groups(&'a self) -> FloodlightActivityGroupMethods<'a, S> {
FloodlightActivityGroupMethods { hub: &self }
}
pub fn floodlight_configurations(&'a self) -> FloodlightConfigurationMethods<'a, S> {
FloodlightConfigurationMethods { hub: &self }
}
pub fn inventory_items(&'a self) -> InventoryItemMethods<'a, S> {
InventoryItemMethods { hub: &self }
}
pub fn languages(&'a self) -> LanguageMethods<'a, S> {
LanguageMethods { hub: &self }
}
pub fn metros(&'a self) -> MetroMethods<'a, S> {
MetroMethods { hub: &self }
}
pub fn mobile_apps(&'a self) -> MobileAppMethods<'a, S> {
MobileAppMethods { hub: &self }
}
pub fn mobile_carriers(&'a self) -> MobileCarrierMethods<'a, S> {
MobileCarrierMethods { hub: &self }
}
pub fn operating_system_versions(&'a self) -> OperatingSystemVersionMethods<'a, S> {
OperatingSystemVersionMethods { hub: &self }
}
pub fn operating_systems(&'a self) -> OperatingSystemMethods<'a, S> {
OperatingSystemMethods { hub: &self }
}
pub fn order_documents(&'a self) -> OrderDocumentMethods<'a, S> {
OrderDocumentMethods { hub: &self }
}
pub fn orders(&'a self) -> OrderMethods<'a, S> {
OrderMethods { hub: &self }
}
pub fn placement_groups(&'a self) -> PlacementGroupMethods<'a, S> {
PlacementGroupMethods { hub: &self }
}
pub fn placement_strategies(&'a self) -> PlacementStrategyMethods<'a, S> {
PlacementStrategyMethods { hub: &self }
}
pub fn placements(&'a self) -> PlacementMethods<'a, S> {
PlacementMethods { hub: &self }
}
pub fn platform_types(&'a self) -> PlatformTypeMethods<'a, S> {
PlatformTypeMethods { hub: &self }
}
pub fn postal_codes(&'a self) -> PostalCodeMethods<'a, S> {
PostalCodeMethods { hub: &self }
}
pub fn projects(&'a self) -> ProjectMethods<'a, S> {
ProjectMethods { hub: &self }
}
pub fn regions(&'a self) -> RegionMethods<'a, S> {
RegionMethods { hub: &self }
}
pub fn remarketing_list_shares(&'a self) -> RemarketingListShareMethods<'a, S> {
RemarketingListShareMethods { hub: &self }
}
pub fn remarketing_lists(&'a self) -> RemarketingListMethods<'a, S> {
RemarketingListMethods { hub: &self }
}
pub fn reports(&'a self) -> ReportMethods<'a, S> {
ReportMethods { hub: &self }
}
pub fn sites(&'a self) -> SiteMethods<'a, S> {
SiteMethods { hub: &self }
}
pub fn sizes(&'a self) -> SizeMethods<'a, S> {
SizeMethods { hub: &self }
}
pub fn subaccounts(&'a self) -> SubaccountMethods<'a, S> {
SubaccountMethods { hub: &self }
}
pub fn targetable_remarketing_lists(&'a self) -> TargetableRemarketingListMethods<'a, S> {
TargetableRemarketingListMethods { hub: &self }
}
pub fn targeting_templates(&'a self) -> TargetingTemplateMethods<'a, S> {
TargetingTemplateMethods { hub: &self }
}
pub fn user_profiles(&'a self) -> UserProfileMethods<'a, S> {
UserProfileMethods { hub: &self }
}
pub fn user_role_permission_groups(&'a self) -> UserRolePermissionGroupMethods<'a, S> {
UserRolePermissionGroupMethods { hub: &self }
}
pub fn user_role_permissions(&'a self) -> UserRolePermissionMethods<'a, S> {
UserRolePermissionMethods { hub: &self }
}
pub fn user_roles(&'a self) -> UserRoleMethods<'a, S> {
UserRoleMethods { hub: &self }
}
pub fn video_formats(&'a self) -> VideoFormatMethods<'a, S> {
VideoFormatMethods { hub: &self }
}
/// Set the user-agent header field to use in all requests to the server.
/// It defaults to `google-api-rust-client/5.0.3`.
///
/// Returns the previously set user-agent.
pub fn user_agent(&mut self, agent_name: String) -> String {
mem::replace(&mut self._user_agent, agent_name)
}
/// Set the base url to use in all requests to the server.
/// It defaults to `https://www.googleapis.com/dfareporting/v3.2/`.
///
/// Returns the previously set base url.
pub fn base_url(&mut self, new_base_url: String) -> String {
mem::replace(&mut self._base_url, new_base_url)
}
/// Set the root url to use in all requests to the server.
/// It defaults to `https://www.googleapis.com/`.
///
/// Returns the previously set root url.
pub fn root_url(&mut self, new_root_url: String) -> String {
mem::replace(&mut self._root_url, new_root_url)
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,35 +0,0 @@
use std::collections::HashMap;
use std::cell::RefCell;
use std::default::Default;
use std::collections::BTreeSet;
use std::error::Error as StdError;
use serde_json as json;
use std::io;
use std::fs;
use std::mem;
use hyper::client::connect;
use tokio::io::{AsyncRead, AsyncWrite};
use tokio::time::sleep;
use tower_service;
use serde::{Serialize, Deserialize};
use crate::{client, client::GetToken, client::serde_with};
mod utilities;
pub use utilities::*;
mod hub;
pub use hub::*;
mod schemas;
pub use schemas::*;
mod method_builders;
pub use method_builders::*;
mod call_builders;
pub use call_builders::*;
mod enums;
pub use enums::*;

File diff suppressed because it is too large Load Diff

View File

@@ -1,32 +0,0 @@
use super::*;
/// Identifies the an OAuth2 authorization scope.
/// A scope is needed when requesting an
/// [authorization token](https://developers.google.com/youtube/v3/guides/authentication).
#[derive(PartialEq, Eq, Hash, Debug, Clone)]
pub enum Scope {
/// Manage DoubleClick Digital Marketing conversions
Ddmconversion,
/// View and manage DoubleClick for Advertisers reports
Full,
/// View and manage your DoubleClick Campaign Manager's (DCM) display ad campaigns
Dfatrafficking,
}
impl AsRef<str> for Scope {
fn as_ref(&self) -> &str {
match *self {
Scope::Ddmconversion => "https://www.googleapis.com/auth/ddmconversions",
Scope::Full => "https://www.googleapis.com/auth/dfareporting",
Scope::Dfatrafficking => "https://www.googleapis.com/auth/dfatrafficking",
}
}
}
impl Default for Scope {
fn default() -> Scope {
Scope::Full
}
}

View File

@@ -1,339 +0,0 @@
// DO NOT EDIT !
// This file was generated automatically from 'src/generator/templates/api/lib.rs.mako'
// DO NOT EDIT !
//! This documentation was generated from *dfareporting* crate version *5.0.4+20190531*, where *20190531* is the exact revision of the *dfareporting:v3.2* schema built by the [mako](http://www.makotemplates.org/) code generator *v5.0.4*.
//!
//! Everything else about the *dfareporting* *v3d2* API can be found at the
//! [official documentation site](https://developers.google.com/doubleclick-advertisers/).
//! The original source code is [on github](https://github.com/Byron/google-apis-rs/tree/main/gen/dfareporting3d2).
//! # Features
//!
//! Handle the following *Resources* with ease from the central [hub](Dfareporting) ...
//!
//! * [account active ad summaries](api::AccountActiveAdSummary)
//! * [*get*](api::AccountActiveAdSummaryGetCall)
//! * [account permission groups](api::AccountPermissionGroup)
//! * [*get*](api::AccountPermissionGroupGetCall) and [*list*](api::AccountPermissionGroupListCall)
//! * [account permissions](api::AccountPermission)
//! * [*get*](api::AccountPermissionGetCall) and [*list*](api::AccountPermissionListCall)
//! * [account user profiles](api::AccountUserProfile)
//! * [*get*](api::AccountUserProfileGetCall), [*insert*](api::AccountUserProfileInsertCall), [*list*](api::AccountUserProfileListCall), [*patch*](api::AccountUserProfilePatchCall) and [*update*](api::AccountUserProfileUpdateCall)
//! * [accounts](api::Account)
//! * [*get*](api::AccountGetCall), [*list*](api::AccountListCall), [*patch*](api::AccountPatchCall) and [*update*](api::AccountUpdateCall)
//! * [ads](api::Ad)
//! * [*get*](api::AdGetCall), [*insert*](api::AdInsertCall), [*list*](api::AdListCall), [*patch*](api::AdPatchCall) and [*update*](api::AdUpdateCall)
//! * [advertiser groups](api::AdvertiserGroup)
//! * [*delete*](api::AdvertiserGroupDeleteCall), [*get*](api::AdvertiserGroupGetCall), [*insert*](api::AdvertiserGroupInsertCall), [*list*](api::AdvertiserGroupListCall), [*patch*](api::AdvertiserGroupPatchCall) and [*update*](api::AdvertiserGroupUpdateCall)
//! * advertiser landing pages
//! * [*get*](api::AdvertiserLandingPageGetCall), [*insert*](api::AdvertiserLandingPageInsertCall), [*list*](api::AdvertiserLandingPageListCall), [*patch*](api::AdvertiserLandingPagePatchCall) and [*update*](api::AdvertiserLandingPageUpdateCall)
//! * [advertisers](api::Advertiser)
//! * [*get*](api::AdvertiserGetCall), [*insert*](api::AdvertiserInsertCall), [*list*](api::AdvertiserListCall), [*patch*](api::AdvertiserPatchCall) and [*update*](api::AdvertiserUpdateCall)
//! * [browsers](api::Browser)
//! * [*list*](api::BrowserListCall)
//! * [campaign creative associations](api::CampaignCreativeAssociation)
//! * [*insert*](api::CampaignCreativeAssociationInsertCall) and [*list*](api::CampaignCreativeAssociationListCall)
//! * [campaigns](api::Campaign)
//! * [*get*](api::CampaignGetCall), [*insert*](api::CampaignInsertCall), [*list*](api::CampaignListCall), [*patch*](api::CampaignPatchCall) and [*update*](api::CampaignUpdateCall)
//! * [change logs](api::ChangeLog)
//! * [*get*](api::ChangeLogGetCall) and [*list*](api::ChangeLogListCall)
//! * [cities](api::City)
//! * [*list*](api::CityListCall)
//! * [connection types](api::ConnectionType)
//! * [*get*](api::ConnectionTypeGetCall) and [*list*](api::ConnectionTypeListCall)
//! * [content categories](api::ContentCategory)
//! * [*delete*](api::ContentCategoryDeleteCall), [*get*](api::ContentCategoryGetCall), [*insert*](api::ContentCategoryInsertCall), [*list*](api::ContentCategoryListCall), [*patch*](api::ContentCategoryPatchCall) and [*update*](api::ContentCategoryUpdateCall)
//! * [conversions](api::Conversion)
//! * [*batchinsert*](api::ConversionBatchinsertCall) and [*batchupdate*](api::ConversionBatchupdateCall)
//! * [countries](api::Country)
//! * [*get*](api::CountryGetCall) and [*list*](api::CountryListCall)
//! * [creative assets](api::CreativeAsset)
//! * [*insert*](api::CreativeAssetInsertCall)
//! * [creative field values](api::CreativeFieldValue)
//! * [*delete*](api::CreativeFieldValueDeleteCall), [*get*](api::CreativeFieldValueGetCall), [*insert*](api::CreativeFieldValueInsertCall), [*list*](api::CreativeFieldValueListCall), [*patch*](api::CreativeFieldValuePatchCall) and [*update*](api::CreativeFieldValueUpdateCall)
//! * [creative fields](api::CreativeField)
//! * [*delete*](api::CreativeFieldDeleteCall), [*get*](api::CreativeFieldGetCall), [*insert*](api::CreativeFieldInsertCall), [*list*](api::CreativeFieldListCall), [*patch*](api::CreativeFieldPatchCall) and [*update*](api::CreativeFieldUpdateCall)
//! * [creative groups](api::CreativeGroup)
//! * [*get*](api::CreativeGroupGetCall), [*insert*](api::CreativeGroupInsertCall), [*list*](api::CreativeGroupListCall), [*patch*](api::CreativeGroupPatchCall) and [*update*](api::CreativeGroupUpdateCall)
//! * [creatives](api::Creative)
//! * [*get*](api::CreativeGetCall), [*insert*](api::CreativeInsertCall), [*list*](api::CreativeListCall), [*patch*](api::CreativePatchCall) and [*update*](api::CreativeUpdateCall)
//! * [dimension values](api::DimensionValue)
//! * [*query*](api::DimensionValueQueryCall)
//! * [directory site contacts](api::DirectorySiteContact)
//! * [*get*](api::DirectorySiteContactGetCall) and [*list*](api::DirectorySiteContactListCall)
//! * [directory sites](api::DirectorySite)
//! * [*get*](api::DirectorySiteGetCall), [*insert*](api::DirectorySiteInsertCall) and [*list*](api::DirectorySiteListCall)
//! * [dynamic targeting keys](api::DynamicTargetingKey)
//! * [*delete*](api::DynamicTargetingKeyDeleteCall), [*insert*](api::DynamicTargetingKeyInsertCall) and [*list*](api::DynamicTargetingKeyListCall)
//! * [event tags](api::EventTag)
//! * [*delete*](api::EventTagDeleteCall), [*get*](api::EventTagGetCall), [*insert*](api::EventTagInsertCall), [*list*](api::EventTagListCall), [*patch*](api::EventTagPatchCall) and [*update*](api::EventTagUpdateCall)
//! * [files](api::File)
//! * [*get*](api::FileGetCall) and [*list*](api::FileListCall)
//! * [floodlight activities](api::FloodlightActivity)
//! * [*delete*](api::FloodlightActivityDeleteCall), [*generatetag*](api::FloodlightActivityGeneratetagCall), [*get*](api::FloodlightActivityGetCall), [*insert*](api::FloodlightActivityInsertCall), [*list*](api::FloodlightActivityListCall), [*patch*](api::FloodlightActivityPatchCall) and [*update*](api::FloodlightActivityUpdateCall)
//! * [floodlight activity groups](api::FloodlightActivityGroup)
//! * [*get*](api::FloodlightActivityGroupGetCall), [*insert*](api::FloodlightActivityGroupInsertCall), [*list*](api::FloodlightActivityGroupListCall), [*patch*](api::FloodlightActivityGroupPatchCall) and [*update*](api::FloodlightActivityGroupUpdateCall)
//! * [floodlight configurations](api::FloodlightConfiguration)
//! * [*get*](api::FloodlightConfigurationGetCall), [*list*](api::FloodlightConfigurationListCall), [*patch*](api::FloodlightConfigurationPatchCall) and [*update*](api::FloodlightConfigurationUpdateCall)
//! * [inventory items](api::InventoryItem)
//! * [*get*](api::InventoryItemGetCall) and [*list*](api::InventoryItemListCall)
//! * [languages](api::Language)
//! * [*list*](api::LanguageListCall)
//! * [metros](api::Metro)
//! * [*list*](api::MetroListCall)
//! * [mobile apps](api::MobileApp)
//! * [*get*](api::MobileAppGetCall) and [*list*](api::MobileAppListCall)
//! * [mobile carriers](api::MobileCarrier)
//! * [*get*](api::MobileCarrierGetCall) and [*list*](api::MobileCarrierListCall)
//! * [operating system versions](api::OperatingSystemVersion)
//! * [*get*](api::OperatingSystemVersionGetCall) and [*list*](api::OperatingSystemVersionListCall)
//! * [operating systems](api::OperatingSystem)
//! * [*get*](api::OperatingSystemGetCall) and [*list*](api::OperatingSystemListCall)
//! * [order documents](api::OrderDocument)
//! * [*get*](api::OrderDocumentGetCall) and [*list*](api::OrderDocumentListCall)
//! * [orders](api::Order)
//! * [*get*](api::OrderGetCall) and [*list*](api::OrderListCall)
//! * [placement groups](api::PlacementGroup)
//! * [*get*](api::PlacementGroupGetCall), [*insert*](api::PlacementGroupInsertCall), [*list*](api::PlacementGroupListCall), [*patch*](api::PlacementGroupPatchCall) and [*update*](api::PlacementGroupUpdateCall)
//! * [placement strategies](api::PlacementStrategy)
//! * [*delete*](api::PlacementStrategyDeleteCall), [*get*](api::PlacementStrategyGetCall), [*insert*](api::PlacementStrategyInsertCall), [*list*](api::PlacementStrategyListCall), [*patch*](api::PlacementStrategyPatchCall) and [*update*](api::PlacementStrategyUpdateCall)
//! * [placements](api::Placement)
//! * [*generatetags*](api::PlacementGeneratetagCall), [*get*](api::PlacementGetCall), [*insert*](api::PlacementInsertCall), [*list*](api::PlacementListCall), [*patch*](api::PlacementPatchCall) and [*update*](api::PlacementUpdateCall)
//! * [platform types](api::PlatformType)
//! * [*get*](api::PlatformTypeGetCall) and [*list*](api::PlatformTypeListCall)
//! * [postal codes](api::PostalCode)
//! * [*get*](api::PostalCodeGetCall) and [*list*](api::PostalCodeListCall)
//! * [projects](api::Project)
//! * [*get*](api::ProjectGetCall) and [*list*](api::ProjectListCall)
//! * [regions](api::Region)
//! * [*list*](api::RegionListCall)
//! * [remarketing list shares](api::RemarketingListShare)
//! * [*get*](api::RemarketingListShareGetCall), [*patch*](api::RemarketingListSharePatchCall) and [*update*](api::RemarketingListShareUpdateCall)
//! * [remarketing lists](api::RemarketingList)
//! * [*get*](api::RemarketingListGetCall), [*insert*](api::RemarketingListInsertCall), [*list*](api::RemarketingListListCall), [*patch*](api::RemarketingListPatchCall) and [*update*](api::RemarketingListUpdateCall)
//! * [reports](api::Report)
//! * [*compatible fields query*](api::ReportCompatibleFieldQueryCall), [*delete*](api::ReportDeleteCall), [*files get*](api::ReportFileGetCall), [*files list*](api::ReportFileListCall), [*get*](api::ReportGetCall), [*insert*](api::ReportInsertCall), [*list*](api::ReportListCall), [*patch*](api::ReportPatchCall), [*run*](api::ReportRunCall) and [*update*](api::ReportUpdateCall)
//! * [sites](api::Site)
//! * [*get*](api::SiteGetCall), [*insert*](api::SiteInsertCall), [*list*](api::SiteListCall), [*patch*](api::SitePatchCall) and [*update*](api::SiteUpdateCall)
//! * [sizes](api::Size)
//! * [*get*](api::SizeGetCall), [*insert*](api::SizeInsertCall) and [*list*](api::SizeListCall)
//! * [subaccounts](api::Subaccount)
//! * [*get*](api::SubaccountGetCall), [*insert*](api::SubaccountInsertCall), [*list*](api::SubaccountListCall), [*patch*](api::SubaccountPatchCall) and [*update*](api::SubaccountUpdateCall)
//! * [targetable remarketing lists](api::TargetableRemarketingList)
//! * [*get*](api::TargetableRemarketingListGetCall) and [*list*](api::TargetableRemarketingListListCall)
//! * [targeting templates](api::TargetingTemplate)
//! * [*get*](api::TargetingTemplateGetCall), [*insert*](api::TargetingTemplateInsertCall), [*list*](api::TargetingTemplateListCall), [*patch*](api::TargetingTemplatePatchCall) and [*update*](api::TargetingTemplateUpdateCall)
//! * [user profiles](api::UserProfile)
//! * [*get*](api::UserProfileGetCall) and [*list*](api::UserProfileListCall)
//! * [user role permission groups](api::UserRolePermissionGroup)
//! * [*get*](api::UserRolePermissionGroupGetCall) and [*list*](api::UserRolePermissionGroupListCall)
//! * [user role permissions](api::UserRolePermission)
//! * [*get*](api::UserRolePermissionGetCall) and [*list*](api::UserRolePermissionListCall)
//! * [user roles](api::UserRole)
//! * [*delete*](api::UserRoleDeleteCall), [*get*](api::UserRoleGetCall), [*insert*](api::UserRoleInsertCall), [*list*](api::UserRoleListCall), [*patch*](api::UserRolePatchCall) and [*update*](api::UserRoleUpdateCall)
//! * [video formats](api::VideoFormat)
//! * [*get*](api::VideoFormatGetCall) and [*list*](api::VideoFormatListCall)
//!
//!
//! Upload supported by ...
//!
//! * [*insert creative assets*](api::CreativeAssetInsertCall)
//!
//! Download supported by ...
//!
//! * [*get files*](api::FileGetCall)
//! * [*files get reports*](api::ReportFileGetCall)
//!
//!
//!
//! Not what you are looking for ? Find all other Google APIs in their Rust [documentation index](http://byron.github.io/google-apis-rs).
//!
//! # Structure of this Library
//!
//! The API is structured into the following primary items:
//!
//! * **[Hub](Dfareporting)**
//! * a central object to maintain state and allow accessing all *Activities*
//! * creates [*Method Builders*](client::MethodsBuilder) which in turn
//! allow access to individual [*Call Builders*](client::CallBuilder)
//! * **[Resources](client::Resource)**
//! * primary types that you can apply *Activities* to
//! * a collection of properties and *Parts*
//! * **[Parts](client::Part)**
//! * a collection of properties
//! * never directly used in *Activities*
//! * **[Activities](client::CallBuilder)**
//! * operations to apply to *Resources*
//!
//! All *structures* are marked with applicable traits to further categorize them and ease browsing.
//!
//! Generally speaking, you can invoke *Activities* like this:
//!
//! ```Rust,ignore
//! let r = hub.resource().activity(...).doit().await
//! ```
//!
//! Or specifically ...
//!
//! ```ignore
//! let r = hub.reports().compatible_fields_query(...).doit().await
//! let r = hub.reports().files_get(...).doit().await
//! let r = hub.reports().files_list(...).doit().await
//! let r = hub.reports().delete(...).doit().await
//! let r = hub.reports().get(...).doit().await
//! let r = hub.reports().insert(...).doit().await
//! let r = hub.reports().list(...).doit().await
//! let r = hub.reports().patch(...).doit().await
//! let r = hub.reports().run(...).doit().await
//! let r = hub.reports().update(...).doit().await
//! ```
//!
//! The `resource()` and `activity(...)` calls create [builders][builder-pattern]. The second one dealing with `Activities`
//! supports various methods to configure the impending operation (not shown here). It is made such that all required arguments have to be
//! specified right away (i.e. `(...)`), whereas all optional ones can be [build up][builder-pattern] as desired.
//! The `doit()` method performs the actual communication with the server and returns the respective result.
//!
//! # Usage
//!
//! ## Setting up your Project
//!
//! To use this library, you would put the following lines into your `Cargo.toml` file:
//!
//! ```toml
//! [dependencies]
//! google-dfareporting3d2 = "*"
//! serde = "^1.0"
//! serde_json = "^1.0"
//! ```
//!
//! ## A complete example
//!
//! ```test_harness,no_run
//! extern crate hyper;
//! extern crate hyper_rustls;
//! extern crate google_dfareporting3d2 as dfareporting3d2;
//! use dfareporting3d2::{Result, Error};
//! # async fn dox() {
//! use std::default::Default;
//! use dfareporting3d2::{Dfareporting, oauth2, hyper, hyper_rustls, chrono, FieldMask};
//!
//! // Get an ApplicationSecret instance by some means. It contains the `client_id` and
//! // `client_secret`, among other things.
//! let secret: oauth2::ApplicationSecret = Default::default();
//! // Instantiate the authenticator. It will choose a suitable authentication flow for you,
//! // unless you replace `None` with the desired Flow.
//! // Provide your own `AuthenticatorDelegate` to adjust the way it operates and get feedback about
//! // what's going on. You probably want to bring in your own `TokenStorage` to persist tokens and
//! // retrieve them from storage.
//! let auth = oauth2::InstalledFlowAuthenticator::builder(
//! secret,
//! oauth2::InstalledFlowReturnMethod::HTTPRedirect,
//! ).build().await.unwrap();
//! let mut hub = Dfareporting::new(hyper::Client::builder().build(hyper_rustls::HttpsConnectorBuilder::new().with_native_roots().https_or_http().enable_http1().build()), auth);
//! // You can configure optional parameters by calling the respective setters at will, and
//! // execute the final call using `doit()`.
//! // Values shown here are possibly random and not representative !
//! let result = hub.reports().files_list(-28, -27)
//! .sort_order(&Default::default())
//! .sort_field(&Default::default())
//! .page_token("sanctus")
//! .max_results(-80)
//! .doit().await;
//!
//! match result {
//! Err(e) => match e {
//! // The Error enum provides details about what exactly happened.
//! // You can also just use its `Debug`, `Display` or `Error` traits
//! Error::HttpError(_)
//! |Error::Io(_)
//! |Error::MissingAPIKey
//! |Error::MissingToken(_)
//! |Error::Cancelled
//! |Error::UploadSizeLimitExceeded(_, _)
//! |Error::Failure(_)
//! |Error::BadRequest(_)
//! |Error::FieldClash(_)
//! |Error::JsonDecodeError(_, _) => println!("{}", e),
//! },
//! Ok(res) => println!("Success: {:?}", res),
//! }
//! # }
//! ```
//! ## Handling Errors
//!
//! All errors produced by the system are provided either as [Result](client::Result) enumeration as return value of
//! the doit() methods, or handed as possibly intermediate results to either the
//! [Hub Delegate](client::Delegate), or the [Authenticator Delegate](https://docs.rs/yup-oauth2/*/yup_oauth2/trait.AuthenticatorDelegate.html).
//!
//! When delegates handle errors or intermediate values, they may have a chance to instruct the system to retry. This
//! makes the system potentially resilient to all kinds of errors.
//!
//! ## Uploads and Downloads
//! If a method supports downloads, the response body, which is part of the [Result](client::Result), should be
//! read by you to obtain the media.
//! If such a method also supports a [Response Result](client::ResponseResult), it will return that by default.
//! You can see it as meta-data for the actual media. To trigger a media download, you will have to set up the builder by making
//! this call: `.param("alt", "media")`.
//!
//! Methods supporting uploads can do so using up to 2 different protocols:
//! *simple* and *resumable*. The distinctiveness of each is represented by customized
//! `doit(...)` methods, which are then named `upload(...)` and `upload_resumable(...)` respectively.
//!
//! ## Customization and Callbacks
//!
//! You may alter the way an `doit()` method is called by providing a [delegate](client::Delegate) to the
//! [Method Builder](client::CallBuilder) before making the final `doit()` call.
//! Respective methods will be called to provide progress information, as well as determine whether the system should
//! retry on failure.
//!
//! The [delegate trait](client::Delegate) is default-implemented, allowing you to customize it with minimal effort.
//!
//! ## Optional Parts in Server-Requests
//!
//! All structures provided by this library are made to be [encodable](client::RequestValue) and
//! [decodable](client::ResponseResult) via *json*. Optionals are used to indicate that partial requests are responses
//! are valid.
//! Most optionals are are considered [Parts](client::Part) which are identifiable by name, which will be sent to
//! the server to indicate either the set parts of the request or the desired parts in the response.
//!
//! ## Builder Arguments
//!
//! Using [method builders](client::CallBuilder), you are able to prepare an action call by repeatedly calling it's methods.
//! These will always take a single argument, for which the following statements are true.
//!
//! * [PODs][wiki-pod] are handed by copy
//! * strings are passed as `&str`
//! * [request values](client::RequestValue) are moved
//!
//! Arguments will always be copied or cloned into the builder, to make them independent of their original life times.
//!
//! [wiki-pod]: http://en.wikipedia.org/wiki/Plain_old_data_structure
//! [builder-pattern]: http://en.wikipedia.org/wiki/Builder_pattern
//! [google-go-api]: https://github.com/google/google-api-go-client
//!
//!
// Unused attributes happen thanks to defined, but unused structures
// We don't warn about this, as depending on the API, some data structures or facilities are never used.
// Instead of pre-determining this, we just disable the lint. It's manually tuned to not have any
// unused imports in fully featured APIs. Same with unused_mut ... .
#![allow(unused_imports, unused_mut, dead_code)]
// DO NOT EDIT !
// This file was generated automatically from 'src/generator/templates/api/lib.rs.mako'
// DO NOT EDIT !
// Re-export the hyper and hyper_rustls crate, they are required to build the hub
pub use hyper;
pub use hyper_rustls;
pub extern crate google_apis_common as client;
pub use client::chrono;
pub mod api;
// Re-export the hub type and some basic client structs
pub use api::Dfareporting;
pub use client::{Result, Error, Delegate, FieldMask};
// Re-export the yup_oauth2 crate, that is required to call some methods of the hub and the client
#[cfg(feature = "yup-oauth2")]
pub use client::oauth2;