Initial commit

This commit is contained in:
Caribana
2017-05-26 11:41:26 +02:00
commit 61c24500af
6264 changed files with 645934 additions and 0 deletions

View File

@@ -0,0 +1,194 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_Account extends Google_Collection
{
protected $collection_key = 'availablePermissionIds';
public $accountPermissionIds;
public $accountProfile;
public $active;
public $activeAdsLimitTier;
public $activeViewOptOut;
public $availablePermissionIds;
public $countryId;
public $currencyId;
public $defaultCreativeSizeId;
public $description;
public $id;
public $kind;
public $locale;
public $maximumImageSize;
public $name;
public $nielsenOcrEnabled;
protected $reportsConfigurationType = 'Google_Service_Dfareporting_ReportsConfiguration';
protected $reportsConfigurationDataType = '';
public $shareReportsWithTwitter;
public $teaserSizeLimit;
public function setAccountPermissionIds($accountPermissionIds)
{
$this->accountPermissionIds = $accountPermissionIds;
}
public function getAccountPermissionIds()
{
return $this->accountPermissionIds;
}
public function setAccountProfile($accountProfile)
{
$this->accountProfile = $accountProfile;
}
public function getAccountProfile()
{
return $this->accountProfile;
}
public function setActive($active)
{
$this->active = $active;
}
public function getActive()
{
return $this->active;
}
public function setActiveAdsLimitTier($activeAdsLimitTier)
{
$this->activeAdsLimitTier = $activeAdsLimitTier;
}
public function getActiveAdsLimitTier()
{
return $this->activeAdsLimitTier;
}
public function setActiveViewOptOut($activeViewOptOut)
{
$this->activeViewOptOut = $activeViewOptOut;
}
public function getActiveViewOptOut()
{
return $this->activeViewOptOut;
}
public function setAvailablePermissionIds($availablePermissionIds)
{
$this->availablePermissionIds = $availablePermissionIds;
}
public function getAvailablePermissionIds()
{
return $this->availablePermissionIds;
}
public function setCountryId($countryId)
{
$this->countryId = $countryId;
}
public function getCountryId()
{
return $this->countryId;
}
public function setCurrencyId($currencyId)
{
$this->currencyId = $currencyId;
}
public function getCurrencyId()
{
return $this->currencyId;
}
public function setDefaultCreativeSizeId($defaultCreativeSizeId)
{
$this->defaultCreativeSizeId = $defaultCreativeSizeId;
}
public function getDefaultCreativeSizeId()
{
return $this->defaultCreativeSizeId;
}
public function setDescription($description)
{
$this->description = $description;
}
public function getDescription()
{
return $this->description;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setLocale($locale)
{
$this->locale = $locale;
}
public function getLocale()
{
return $this->locale;
}
public function setMaximumImageSize($maximumImageSize)
{
$this->maximumImageSize = $maximumImageSize;
}
public function getMaximumImageSize()
{
return $this->maximumImageSize;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setNielsenOcrEnabled($nielsenOcrEnabled)
{
$this->nielsenOcrEnabled = $nielsenOcrEnabled;
}
public function getNielsenOcrEnabled()
{
return $this->nielsenOcrEnabled;
}
public function setReportsConfiguration(Google_Service_Dfareporting_ReportsConfiguration $reportsConfiguration)
{
$this->reportsConfiguration = $reportsConfiguration;
}
public function getReportsConfiguration()
{
return $this->reportsConfiguration;
}
public function setShareReportsWithTwitter($shareReportsWithTwitter)
{
$this->shareReportsWithTwitter = $shareReportsWithTwitter;
}
public function getShareReportsWithTwitter()
{
return $this->shareReportsWithTwitter;
}
public function setTeaserSizeLimit($teaserSizeLimit)
{
$this->teaserSizeLimit = $teaserSizeLimit;
}
public function getTeaserSizeLimit()
{
return $this->teaserSizeLimit;
}
}

View File

@@ -0,0 +1,66 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AccountActiveAdSummary extends Google_Model
{
public $accountId;
public $activeAds;
public $activeAdsLimitTier;
public $availableAds;
public $kind;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setActiveAds($activeAds)
{
$this->activeAds = $activeAds;
}
public function getActiveAds()
{
return $this->activeAds;
}
public function setActiveAdsLimitTier($activeAdsLimitTier)
{
$this->activeAdsLimitTier = $activeAdsLimitTier;
}
public function getActiveAdsLimitTier()
{
return $this->activeAdsLimitTier;
}
public function setAvailableAds($availableAds)
{
$this->availableAds = $availableAds;
}
public function getAvailableAds()
{
return $this->availableAds;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,76 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AccountPermission extends Google_Collection
{
protected $collection_key = 'accountProfiles';
public $accountProfiles;
public $id;
public $kind;
public $level;
public $name;
public $permissionGroupId;
public function setAccountProfiles($accountProfiles)
{
$this->accountProfiles = $accountProfiles;
}
public function getAccountProfiles()
{
return $this->accountProfiles;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setLevel($level)
{
$this->level = $level;
}
public function getLevel()
{
return $this->level;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setPermissionGroupId($permissionGroupId)
{
$this->permissionGroupId = $permissionGroupId;
}
public function getPermissionGroupId()
{
return $this->permissionGroupId;
}
}

View File

@@ -0,0 +1,48 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AccountPermissionGroup extends Google_Model
{
public $id;
public $kind;
public $name;
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}

View File

@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AccountPermissionGroupsListResponse extends Google_Collection
{
protected $collection_key = 'accountPermissionGroups';
protected $accountPermissionGroupsType = 'Google_Service_Dfareporting_AccountPermissionGroup';
protected $accountPermissionGroupsDataType = 'array';
public $kind;
public function setAccountPermissionGroups($accountPermissionGroups)
{
$this->accountPermissionGroups = $accountPermissionGroups;
}
public function getAccountPermissionGroups()
{
return $this->accountPermissionGroups;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AccountPermissionsListResponse extends Google_Collection
{
protected $collection_key = 'accountPermissions';
protected $accountPermissionsType = 'Google_Service_Dfareporting_AccountPermission';
protected $accountPermissionsDataType = 'array';
public $kind;
public function setAccountPermissions($accountPermissions)
{
$this->accountPermissions = $accountPermissions;
}
public function getAccountPermissions()
{
return $this->accountPermissions;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,169 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AccountUserProfile extends Google_Model
{
public $accountId;
public $active;
protected $advertiserFilterType = 'Google_Service_Dfareporting_ObjectFilter';
protected $advertiserFilterDataType = '';
protected $campaignFilterType = 'Google_Service_Dfareporting_ObjectFilter';
protected $campaignFilterDataType = '';
public $comments;
public $email;
public $id;
public $kind;
public $locale;
public $name;
protected $siteFilterType = 'Google_Service_Dfareporting_ObjectFilter';
protected $siteFilterDataType = '';
public $subaccountId;
public $traffickerType;
public $userAccessType;
protected $userRoleFilterType = 'Google_Service_Dfareporting_ObjectFilter';
protected $userRoleFilterDataType = '';
public $userRoleId;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setActive($active)
{
$this->active = $active;
}
public function getActive()
{
return $this->active;
}
public function setAdvertiserFilter(Google_Service_Dfareporting_ObjectFilter $advertiserFilter)
{
$this->advertiserFilter = $advertiserFilter;
}
public function getAdvertiserFilter()
{
return $this->advertiserFilter;
}
public function setCampaignFilter(Google_Service_Dfareporting_ObjectFilter $campaignFilter)
{
$this->campaignFilter = $campaignFilter;
}
public function getCampaignFilter()
{
return $this->campaignFilter;
}
public function setComments($comments)
{
$this->comments = $comments;
}
public function getComments()
{
return $this->comments;
}
public function setEmail($email)
{
$this->email = $email;
}
public function getEmail()
{
return $this->email;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setLocale($locale)
{
$this->locale = $locale;
}
public function getLocale()
{
return $this->locale;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setSiteFilter(Google_Service_Dfareporting_ObjectFilter $siteFilter)
{
$this->siteFilter = $siteFilter;
}
public function getSiteFilter()
{
return $this->siteFilter;
}
public function setSubaccountId($subaccountId)
{
$this->subaccountId = $subaccountId;
}
public function getSubaccountId()
{
return $this->subaccountId;
}
public function setTraffickerType($traffickerType)
{
$this->traffickerType = $traffickerType;
}
public function getTraffickerType()
{
return $this->traffickerType;
}
public function setUserAccessType($userAccessType)
{
$this->userAccessType = $userAccessType;
}
public function getUserAccessType()
{
return $this->userAccessType;
}
public function setUserRoleFilter(Google_Service_Dfareporting_ObjectFilter $userRoleFilter)
{
$this->userRoleFilter = $userRoleFilter;
}
public function getUserRoleFilter()
{
return $this->userRoleFilter;
}
public function setUserRoleId($userRoleId)
{
$this->userRoleId = $userRoleId;
}
public function getUserRoleId()
{
return $this->userRoleId;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AccountUserProfilesListResponse extends Google_Collection
{
protected $collection_key = 'accountUserProfiles';
protected $accountUserProfilesType = 'Google_Service_Dfareporting_AccountUserProfile';
protected $accountUserProfilesDataType = 'array';
public $kind;
public $nextPageToken;
public function setAccountUserProfiles($accountUserProfiles)
{
$this->accountUserProfiles = $accountUserProfiles;
}
public function getAccountUserProfiles()
{
return $this->accountUserProfiles;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AccountsListResponse extends Google_Collection
{
protected $collection_key = 'accounts';
protected $accountsType = 'Google_Service_Dfareporting_Account';
protected $accountsDataType = 'array';
public $kind;
public $nextPageToken;
public function setAccounts($accounts)
{
$this->accounts = $accounts;
}
public function getAccounts()
{
return $this->accounts;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_Activities extends Google_Collection
{
protected $collection_key = 'metricNames';
protected $filtersType = 'Google_Service_Dfareporting_DimensionValue';
protected $filtersDataType = 'array';
public $kind;
public $metricNames;
public function setFilters($filters)
{
$this->filters = $filters;
}
public function getFilters()
{
return $this->filters;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setMetricNames($metricNames)
{
$this->metricNames = $metricNames;
}
public function getMetricNames()
{
return $this->metricNames;
}
}

View File

@@ -0,0 +1,393 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_Ad extends Google_Collection
{
protected $collection_key = 'placementAssignments';
public $accountId;
public $active;
public $advertiserId;
protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $advertiserIdDimensionValueDataType = '';
public $archived;
public $audienceSegmentId;
public $campaignId;
protected $campaignIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $campaignIdDimensionValueDataType = '';
protected $clickThroughUrlType = 'Google_Service_Dfareporting_ClickThroughUrl';
protected $clickThroughUrlDataType = '';
protected $clickThroughUrlSuffixPropertiesType = 'Google_Service_Dfareporting_ClickThroughUrlSuffixProperties';
protected $clickThroughUrlSuffixPropertiesDataType = '';
public $comments;
public $compatibility;
protected $createInfoType = 'Google_Service_Dfareporting_LastModifiedInfo';
protected $createInfoDataType = '';
protected $creativeGroupAssignmentsType = 'Google_Service_Dfareporting_CreativeGroupAssignment';
protected $creativeGroupAssignmentsDataType = 'array';
protected $creativeRotationType = 'Google_Service_Dfareporting_CreativeRotation';
protected $creativeRotationDataType = '';
protected $dayPartTargetingType = 'Google_Service_Dfareporting_DayPartTargeting';
protected $dayPartTargetingDataType = '';
protected $defaultClickThroughEventTagPropertiesType = 'Google_Service_Dfareporting_DefaultClickThroughEventTagProperties';
protected $defaultClickThroughEventTagPropertiesDataType = '';
protected $deliveryScheduleType = 'Google_Service_Dfareporting_DeliverySchedule';
protected $deliveryScheduleDataType = '';
public $dynamicClickTracker;
public $endTime;
protected $eventTagOverridesType = 'Google_Service_Dfareporting_EventTagOverride';
protected $eventTagOverridesDataType = 'array';
protected $geoTargetingType = 'Google_Service_Dfareporting_GeoTargeting';
protected $geoTargetingDataType = '';
public $id;
protected $idDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $idDimensionValueDataType = '';
protected $keyValueTargetingExpressionType = 'Google_Service_Dfareporting_KeyValueTargetingExpression';
protected $keyValueTargetingExpressionDataType = '';
public $kind;
protected $languageTargetingType = 'Google_Service_Dfareporting_LanguageTargeting';
protected $languageTargetingDataType = '';
protected $lastModifiedInfoType = 'Google_Service_Dfareporting_LastModifiedInfo';
protected $lastModifiedInfoDataType = '';
public $name;
protected $placementAssignmentsType = 'Google_Service_Dfareporting_PlacementAssignment';
protected $placementAssignmentsDataType = 'array';
protected $remarketingListExpressionType = 'Google_Service_Dfareporting_ListTargetingExpression';
protected $remarketingListExpressionDataType = '';
protected $sizeType = 'Google_Service_Dfareporting_Size';
protected $sizeDataType = '';
public $sslCompliant;
public $sslRequired;
public $startTime;
public $subaccountId;
public $targetingTemplateId;
protected $technologyTargetingType = 'Google_Service_Dfareporting_TechnologyTargeting';
protected $technologyTargetingDataType = '';
public $type;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setActive($active)
{
$this->active = $active;
}
public function getActive()
{
return $this->active;
}
public function setAdvertiserId($advertiserId)
{
$this->advertiserId = $advertiserId;
}
public function getAdvertiserId()
{
return $this->advertiserId;
}
public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
{
$this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
}
public function getAdvertiserIdDimensionValue()
{
return $this->advertiserIdDimensionValue;
}
public function setArchived($archived)
{
$this->archived = $archived;
}
public function getArchived()
{
return $this->archived;
}
public function setAudienceSegmentId($audienceSegmentId)
{
$this->audienceSegmentId = $audienceSegmentId;
}
public function getAudienceSegmentId()
{
return $this->audienceSegmentId;
}
public function setCampaignId($campaignId)
{
$this->campaignId = $campaignId;
}
public function getCampaignId()
{
return $this->campaignId;
}
public function setCampaignIdDimensionValue(Google_Service_Dfareporting_DimensionValue $campaignIdDimensionValue)
{
$this->campaignIdDimensionValue = $campaignIdDimensionValue;
}
public function getCampaignIdDimensionValue()
{
return $this->campaignIdDimensionValue;
}
public function setClickThroughUrl(Google_Service_Dfareporting_ClickThroughUrl $clickThroughUrl)
{
$this->clickThroughUrl = $clickThroughUrl;
}
public function getClickThroughUrl()
{
return $this->clickThroughUrl;
}
public function setClickThroughUrlSuffixProperties(Google_Service_Dfareporting_ClickThroughUrlSuffixProperties $clickThroughUrlSuffixProperties)
{
$this->clickThroughUrlSuffixProperties = $clickThroughUrlSuffixProperties;
}
public function getClickThroughUrlSuffixProperties()
{
return $this->clickThroughUrlSuffixProperties;
}
public function setComments($comments)
{
$this->comments = $comments;
}
public function getComments()
{
return $this->comments;
}
public function setCompatibility($compatibility)
{
$this->compatibility = $compatibility;
}
public function getCompatibility()
{
return $this->compatibility;
}
public function setCreateInfo(Google_Service_Dfareporting_LastModifiedInfo $createInfo)
{
$this->createInfo = $createInfo;
}
public function getCreateInfo()
{
return $this->createInfo;
}
public function setCreativeGroupAssignments($creativeGroupAssignments)
{
$this->creativeGroupAssignments = $creativeGroupAssignments;
}
public function getCreativeGroupAssignments()
{
return $this->creativeGroupAssignments;
}
public function setCreativeRotation(Google_Service_Dfareporting_CreativeRotation $creativeRotation)
{
$this->creativeRotation = $creativeRotation;
}
public function getCreativeRotation()
{
return $this->creativeRotation;
}
public function setDayPartTargeting(Google_Service_Dfareporting_DayPartTargeting $dayPartTargeting)
{
$this->dayPartTargeting = $dayPartTargeting;
}
public function getDayPartTargeting()
{
return $this->dayPartTargeting;
}
public function setDefaultClickThroughEventTagProperties(Google_Service_Dfareporting_DefaultClickThroughEventTagProperties $defaultClickThroughEventTagProperties)
{
$this->defaultClickThroughEventTagProperties = $defaultClickThroughEventTagProperties;
}
public function getDefaultClickThroughEventTagProperties()
{
return $this->defaultClickThroughEventTagProperties;
}
public function setDeliverySchedule(Google_Service_Dfareporting_DeliverySchedule $deliverySchedule)
{
$this->deliverySchedule = $deliverySchedule;
}
public function getDeliverySchedule()
{
return $this->deliverySchedule;
}
public function setDynamicClickTracker($dynamicClickTracker)
{
$this->dynamicClickTracker = $dynamicClickTracker;
}
public function getDynamicClickTracker()
{
return $this->dynamicClickTracker;
}
public function setEndTime($endTime)
{
$this->endTime = $endTime;
}
public function getEndTime()
{
return $this->endTime;
}
public function setEventTagOverrides($eventTagOverrides)
{
$this->eventTagOverrides = $eventTagOverrides;
}
public function getEventTagOverrides()
{
return $this->eventTagOverrides;
}
public function setGeoTargeting(Google_Service_Dfareporting_GeoTargeting $geoTargeting)
{
$this->geoTargeting = $geoTargeting;
}
public function getGeoTargeting()
{
return $this->geoTargeting;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue)
{
$this->idDimensionValue = $idDimensionValue;
}
public function getIdDimensionValue()
{
return $this->idDimensionValue;
}
public function setKeyValueTargetingExpression(Google_Service_Dfareporting_KeyValueTargetingExpression $keyValueTargetingExpression)
{
$this->keyValueTargetingExpression = $keyValueTargetingExpression;
}
public function getKeyValueTargetingExpression()
{
return $this->keyValueTargetingExpression;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setLanguageTargeting(Google_Service_Dfareporting_LanguageTargeting $languageTargeting)
{
$this->languageTargeting = $languageTargeting;
}
public function getLanguageTargeting()
{
return $this->languageTargeting;
}
public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo)
{
$this->lastModifiedInfo = $lastModifiedInfo;
}
public function getLastModifiedInfo()
{
return $this->lastModifiedInfo;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setPlacementAssignments($placementAssignments)
{
$this->placementAssignments = $placementAssignments;
}
public function getPlacementAssignments()
{
return $this->placementAssignments;
}
public function setRemarketingListExpression(Google_Service_Dfareporting_ListTargetingExpression $remarketingListExpression)
{
$this->remarketingListExpression = $remarketingListExpression;
}
public function getRemarketingListExpression()
{
return $this->remarketingListExpression;
}
public function setSize(Google_Service_Dfareporting_Size $size)
{
$this->size = $size;
}
public function getSize()
{
return $this->size;
}
public function setSslCompliant($sslCompliant)
{
$this->sslCompliant = $sslCompliant;
}
public function getSslCompliant()
{
return $this->sslCompliant;
}
public function setSslRequired($sslRequired)
{
$this->sslRequired = $sslRequired;
}
public function getSslRequired()
{
return $this->sslRequired;
}
public function setStartTime($startTime)
{
$this->startTime = $startTime;
}
public function getStartTime()
{
return $this->startTime;
}
public function setSubaccountId($subaccountId)
{
$this->subaccountId = $subaccountId;
}
public function getSubaccountId()
{
return $this->subaccountId;
}
public function setTargetingTemplateId($targetingTemplateId)
{
$this->targetingTemplateId = $targetingTemplateId;
}
public function getTargetingTemplateId()
{
return $this->targetingTemplateId;
}
public function setTechnologyTargeting(Google_Service_Dfareporting_TechnologyTargeting $technologyTargeting)
{
$this->technologyTargeting = $technologyTargeting;
}
public function getTechnologyTargeting()
{
return $this->technologyTargeting;
}
public function setType($type)
{
$this->type = $type;
}
public function getType()
{
return $this->type;
}
}

View File

@@ -0,0 +1,93 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AdSlot extends Google_Model
{
public $comment;
public $compatibility;
public $height;
public $linkedPlacementId;
public $name;
public $paymentSourceType;
public $primary;
public $width;
public function setComment($comment)
{
$this->comment = $comment;
}
public function getComment()
{
return $this->comment;
}
public function setCompatibility($compatibility)
{
$this->compatibility = $compatibility;
}
public function getCompatibility()
{
return $this->compatibility;
}
public function setHeight($height)
{
$this->height = $height;
}
public function getHeight()
{
return $this->height;
}
public function setLinkedPlacementId($linkedPlacementId)
{
$this->linkedPlacementId = $linkedPlacementId;
}
public function getLinkedPlacementId()
{
return $this->linkedPlacementId;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setPaymentSourceType($paymentSourceType)
{
$this->paymentSourceType = $paymentSourceType;
}
public function getPaymentSourceType()
{
return $this->paymentSourceType;
}
public function setPrimary($primary)
{
$this->primary = $primary;
}
public function getPrimary()
{
return $this->primary;
}
public function setWidth($width)
{
$this->width = $width;
}
public function getWidth()
{
return $this->width;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AdsListResponse extends Google_Collection
{
protected $collection_key = 'ads';
protected $adsType = 'Google_Service_Dfareporting_Ad';
protected $adsDataType = 'array';
public $kind;
public $nextPageToken;
public function setAds($ads)
{
$this->ads = $ads;
}
public function getAds()
{
return $this->ads;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,158 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_Advertiser extends Google_Model
{
public $accountId;
public $advertiserGroupId;
public $clickThroughUrlSuffix;
public $defaultClickThroughEventTagId;
public $defaultEmail;
public $floodlightConfigurationId;
protected $floodlightConfigurationIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $floodlightConfigurationIdDimensionValueDataType = '';
public $id;
protected $idDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $idDimensionValueDataType = '';
public $kind;
public $name;
public $originalFloodlightConfigurationId;
public $status;
public $subaccountId;
public $suspended;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setAdvertiserGroupId($advertiserGroupId)
{
$this->advertiserGroupId = $advertiserGroupId;
}
public function getAdvertiserGroupId()
{
return $this->advertiserGroupId;
}
public function setClickThroughUrlSuffix($clickThroughUrlSuffix)
{
$this->clickThroughUrlSuffix = $clickThroughUrlSuffix;
}
public function getClickThroughUrlSuffix()
{
return $this->clickThroughUrlSuffix;
}
public function setDefaultClickThroughEventTagId($defaultClickThroughEventTagId)
{
$this->defaultClickThroughEventTagId = $defaultClickThroughEventTagId;
}
public function getDefaultClickThroughEventTagId()
{
return $this->defaultClickThroughEventTagId;
}
public function setDefaultEmail($defaultEmail)
{
$this->defaultEmail = $defaultEmail;
}
public function getDefaultEmail()
{
return $this->defaultEmail;
}
public function setFloodlightConfigurationId($floodlightConfigurationId)
{
$this->floodlightConfigurationId = $floodlightConfigurationId;
}
public function getFloodlightConfigurationId()
{
return $this->floodlightConfigurationId;
}
public function setFloodlightConfigurationIdDimensionValue(Google_Service_Dfareporting_DimensionValue $floodlightConfigurationIdDimensionValue)
{
$this->floodlightConfigurationIdDimensionValue = $floodlightConfigurationIdDimensionValue;
}
public function getFloodlightConfigurationIdDimensionValue()
{
return $this->floodlightConfigurationIdDimensionValue;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue)
{
$this->idDimensionValue = $idDimensionValue;
}
public function getIdDimensionValue()
{
return $this->idDimensionValue;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setOriginalFloodlightConfigurationId($originalFloodlightConfigurationId)
{
$this->originalFloodlightConfigurationId = $originalFloodlightConfigurationId;
}
public function getOriginalFloodlightConfigurationId()
{
return $this->originalFloodlightConfigurationId;
}
public function setStatus($status)
{
$this->status = $status;
}
public function getStatus()
{
return $this->status;
}
public function setSubaccountId($subaccountId)
{
$this->subaccountId = $subaccountId;
}
public function getSubaccountId()
{
return $this->subaccountId;
}
public function setSuspended($suspended)
{
$this->suspended = $suspended;
}
public function getSuspended()
{
return $this->suspended;
}
}

View File

@@ -0,0 +1,57 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AdvertiserGroup extends Google_Model
{
public $accountId;
public $id;
public $kind;
public $name;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AdvertiserGroupsListResponse extends Google_Collection
{
protected $collection_key = 'advertiserGroups';
protected $advertiserGroupsType = 'Google_Service_Dfareporting_AdvertiserGroup';
protected $advertiserGroupsDataType = 'array';
public $kind;
public $nextPageToken;
public function setAdvertiserGroups($advertiserGroups)
{
$this->advertiserGroups = $advertiserGroups;
}
public function getAdvertiserGroups()
{
return $this->advertiserGroups;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AdvertisersListResponse extends Google_Collection
{
protected $collection_key = 'advertisers';
protected $advertisersType = 'Google_Service_Dfareporting_Advertiser';
protected $advertisersDataType = 'array';
public $kind;
public $nextPageToken;
public function setAdvertisers($advertisers)
{
$this->advertisers = $advertisers;
}
public function getAdvertisers()
{
return $this->advertisers;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,48 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AudienceSegment extends Google_Model
{
public $allocation;
public $id;
public $name;
public function setAllocation($allocation)
{
$this->allocation = $allocation;
}
public function getAllocation()
{
return $this->allocation;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_AudienceSegmentGroup extends Google_Collection
{
protected $collection_key = 'audienceSegments';
protected $audienceSegmentsType = 'Google_Service_Dfareporting_AudienceSegment';
protected $audienceSegmentsDataType = 'array';
public $id;
public $name;
public function setAudienceSegments($audienceSegments)
{
$this->audienceSegments = $audienceSegments;
}
public function getAudienceSegments()
{
return $this->audienceSegments;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}

View File

@@ -0,0 +1,75 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_Browser extends Google_Model
{
public $browserVersionId;
public $dartId;
public $kind;
public $majorVersion;
public $minorVersion;
public $name;
public function setBrowserVersionId($browserVersionId)
{
$this->browserVersionId = $browserVersionId;
}
public function getBrowserVersionId()
{
return $this->browserVersionId;
}
public function setDartId($dartId)
{
$this->dartId = $dartId;
}
public function getDartId()
{
return $this->dartId;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setMajorVersion($majorVersion)
{
$this->majorVersion = $majorVersion;
}
public function getMajorVersion()
{
return $this->majorVersion;
}
public function setMinorVersion($minorVersion)
{
$this->minorVersion = $minorVersion;
}
public function getMinorVersion()
{
return $this->minorVersion;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}

View File

@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_BrowsersListResponse extends Google_Collection
{
protected $collection_key = 'browsers';
protected $browsersType = 'Google_Service_Dfareporting_Browser';
protected $browsersDataType = 'array';
public $kind;
public function setBrowsers($browsers)
{
$this->browsers = $browsers;
}
public function getBrowsers()
{
return $this->browsers;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,276 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_Campaign extends Google_Collection
{
protected $collection_key = 'traffickerEmails';
public $accountId;
protected $additionalCreativeOptimizationConfigurationsType = 'Google_Service_Dfareporting_CreativeOptimizationConfiguration';
protected $additionalCreativeOptimizationConfigurationsDataType = 'array';
public $advertiserGroupId;
public $advertiserId;
protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $advertiserIdDimensionValueDataType = '';
public $archived;
protected $audienceSegmentGroupsType = 'Google_Service_Dfareporting_AudienceSegmentGroup';
protected $audienceSegmentGroupsDataType = 'array';
public $billingInvoiceCode;
protected $clickThroughUrlSuffixPropertiesType = 'Google_Service_Dfareporting_ClickThroughUrlSuffixProperties';
protected $clickThroughUrlSuffixPropertiesDataType = '';
public $comment;
protected $createInfoType = 'Google_Service_Dfareporting_LastModifiedInfo';
protected $createInfoDataType = '';
public $creativeGroupIds;
protected $creativeOptimizationConfigurationType = 'Google_Service_Dfareporting_CreativeOptimizationConfiguration';
protected $creativeOptimizationConfigurationDataType = '';
protected $defaultClickThroughEventTagPropertiesType = 'Google_Service_Dfareporting_DefaultClickThroughEventTagProperties';
protected $defaultClickThroughEventTagPropertiesDataType = '';
public $endDate;
protected $eventTagOverridesType = 'Google_Service_Dfareporting_EventTagOverride';
protected $eventTagOverridesDataType = 'array';
public $externalId;
public $id;
protected $idDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $idDimensionValueDataType = '';
public $kind;
protected $lastModifiedInfoType = 'Google_Service_Dfareporting_LastModifiedInfo';
protected $lastModifiedInfoDataType = '';
protected $lookbackConfigurationType = 'Google_Service_Dfareporting_LookbackConfiguration';
protected $lookbackConfigurationDataType = '';
public $name;
public $nielsenOcrEnabled;
public $startDate;
public $subaccountId;
public $traffickerEmails;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setAdditionalCreativeOptimizationConfigurations($additionalCreativeOptimizationConfigurations)
{
$this->additionalCreativeOptimizationConfigurations = $additionalCreativeOptimizationConfigurations;
}
public function getAdditionalCreativeOptimizationConfigurations()
{
return $this->additionalCreativeOptimizationConfigurations;
}
public function setAdvertiserGroupId($advertiserGroupId)
{
$this->advertiserGroupId = $advertiserGroupId;
}
public function getAdvertiserGroupId()
{
return $this->advertiserGroupId;
}
public function setAdvertiserId($advertiserId)
{
$this->advertiserId = $advertiserId;
}
public function getAdvertiserId()
{
return $this->advertiserId;
}
public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
{
$this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
}
public function getAdvertiserIdDimensionValue()
{
return $this->advertiserIdDimensionValue;
}
public function setArchived($archived)
{
$this->archived = $archived;
}
public function getArchived()
{
return $this->archived;
}
public function setAudienceSegmentGroups($audienceSegmentGroups)
{
$this->audienceSegmentGroups = $audienceSegmentGroups;
}
public function getAudienceSegmentGroups()
{
return $this->audienceSegmentGroups;
}
public function setBillingInvoiceCode($billingInvoiceCode)
{
$this->billingInvoiceCode = $billingInvoiceCode;
}
public function getBillingInvoiceCode()
{
return $this->billingInvoiceCode;
}
public function setClickThroughUrlSuffixProperties(Google_Service_Dfareporting_ClickThroughUrlSuffixProperties $clickThroughUrlSuffixProperties)
{
$this->clickThroughUrlSuffixProperties = $clickThroughUrlSuffixProperties;
}
public function getClickThroughUrlSuffixProperties()
{
return $this->clickThroughUrlSuffixProperties;
}
public function setComment($comment)
{
$this->comment = $comment;
}
public function getComment()
{
return $this->comment;
}
public function setCreateInfo(Google_Service_Dfareporting_LastModifiedInfo $createInfo)
{
$this->createInfo = $createInfo;
}
public function getCreateInfo()
{
return $this->createInfo;
}
public function setCreativeGroupIds($creativeGroupIds)
{
$this->creativeGroupIds = $creativeGroupIds;
}
public function getCreativeGroupIds()
{
return $this->creativeGroupIds;
}
public function setCreativeOptimizationConfiguration(Google_Service_Dfareporting_CreativeOptimizationConfiguration $creativeOptimizationConfiguration)
{
$this->creativeOptimizationConfiguration = $creativeOptimizationConfiguration;
}
public function getCreativeOptimizationConfiguration()
{
return $this->creativeOptimizationConfiguration;
}
public function setDefaultClickThroughEventTagProperties(Google_Service_Dfareporting_DefaultClickThroughEventTagProperties $defaultClickThroughEventTagProperties)
{
$this->defaultClickThroughEventTagProperties = $defaultClickThroughEventTagProperties;
}
public function getDefaultClickThroughEventTagProperties()
{
return $this->defaultClickThroughEventTagProperties;
}
public function setEndDate($endDate)
{
$this->endDate = $endDate;
}
public function getEndDate()
{
return $this->endDate;
}
public function setEventTagOverrides($eventTagOverrides)
{
$this->eventTagOverrides = $eventTagOverrides;
}
public function getEventTagOverrides()
{
return $this->eventTagOverrides;
}
public function setExternalId($externalId)
{
$this->externalId = $externalId;
}
public function getExternalId()
{
return $this->externalId;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue)
{
$this->idDimensionValue = $idDimensionValue;
}
public function getIdDimensionValue()
{
return $this->idDimensionValue;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo)
{
$this->lastModifiedInfo = $lastModifiedInfo;
}
public function getLastModifiedInfo()
{
return $this->lastModifiedInfo;
}
public function setLookbackConfiguration(Google_Service_Dfareporting_LookbackConfiguration $lookbackConfiguration)
{
$this->lookbackConfiguration = $lookbackConfiguration;
}
public function getLookbackConfiguration()
{
return $this->lookbackConfiguration;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setNielsenOcrEnabled($nielsenOcrEnabled)
{
$this->nielsenOcrEnabled = $nielsenOcrEnabled;
}
public function getNielsenOcrEnabled()
{
return $this->nielsenOcrEnabled;
}
public function setStartDate($startDate)
{
$this->startDate = $startDate;
}
public function getStartDate()
{
return $this->startDate;
}
public function setSubaccountId($subaccountId)
{
$this->subaccountId = $subaccountId;
}
public function getSubaccountId()
{
return $this->subaccountId;
}
public function setTraffickerEmails($traffickerEmails)
{
$this->traffickerEmails = $traffickerEmails;
}
public function getTraffickerEmails()
{
return $this->traffickerEmails;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CampaignCreativeAssociation extends Google_Model
{
public $creativeId;
public $kind;
public function setCreativeId($creativeId)
{
$this->creativeId = $creativeId;
}
public function getCreativeId()
{
return $this->creativeId;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CampaignCreativeAssociationsListResponse extends Google_Collection
{
protected $collection_key = 'campaignCreativeAssociations';
protected $campaignCreativeAssociationsType = 'Google_Service_Dfareporting_CampaignCreativeAssociation';
protected $campaignCreativeAssociationsDataType = 'array';
public $kind;
public $nextPageToken;
public function setCampaignCreativeAssociations($campaignCreativeAssociations)
{
$this->campaignCreativeAssociations = $campaignCreativeAssociations;
}
public function getCampaignCreativeAssociations()
{
return $this->campaignCreativeAssociations;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CampaignsListResponse extends Google_Collection
{
protected $collection_key = 'campaigns';
protected $campaignsType = 'Google_Service_Dfareporting_Campaign';
protected $campaignsDataType = 'array';
public $kind;
public $nextPageToken;
public function setCampaigns($campaigns)
{
$this->campaigns = $campaigns;
}
public function getCampaigns()
{
return $this->campaigns;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,147 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ChangeLog extends Google_Model
{
public $accountId;
public $action;
public $changeTime;
public $fieldName;
public $id;
public $kind;
public $newValue;
public $objectId;
public $objectType;
public $oldValue;
public $subaccountId;
public $transactionId;
public $userProfileId;
public $userProfileName;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setAction($action)
{
$this->action = $action;
}
public function getAction()
{
return $this->action;
}
public function setChangeTime($changeTime)
{
$this->changeTime = $changeTime;
}
public function getChangeTime()
{
return $this->changeTime;
}
public function setFieldName($fieldName)
{
$this->fieldName = $fieldName;
}
public function getFieldName()
{
return $this->fieldName;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNewValue($newValue)
{
$this->newValue = $newValue;
}
public function getNewValue()
{
return $this->newValue;
}
public function setObjectId($objectId)
{
$this->objectId = $objectId;
}
public function getObjectId()
{
return $this->objectId;
}
public function setObjectType($objectType)
{
$this->objectType = $objectType;
}
public function getObjectType()
{
return $this->objectType;
}
public function setOldValue($oldValue)
{
$this->oldValue = $oldValue;
}
public function getOldValue()
{
return $this->oldValue;
}
public function setSubaccountId($subaccountId)
{
$this->subaccountId = $subaccountId;
}
public function getSubaccountId()
{
return $this->subaccountId;
}
public function setTransactionId($transactionId)
{
$this->transactionId = $transactionId;
}
public function getTransactionId()
{
return $this->transactionId;
}
public function setUserProfileId($userProfileId)
{
$this->userProfileId = $userProfileId;
}
public function getUserProfileId()
{
return $this->userProfileId;
}
public function setUserProfileName($userProfileName)
{
$this->userProfileName = $userProfileName;
}
public function getUserProfileName()
{
return $this->userProfileName;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ChangeLogsListResponse extends Google_Collection
{
protected $collection_key = 'changeLogs';
protected $changeLogsType = 'Google_Service_Dfareporting_ChangeLog';
protected $changeLogsDataType = 'array';
public $kind;
public $nextPageToken;
public function setChangeLogs($changeLogs)
{
$this->changeLogs = $changeLogs;
}
public function getChangeLogs()
{
return $this->changeLogs;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CitiesListResponse extends Google_Collection
{
protected $collection_key = 'cities';
protected $citiesType = 'Google_Service_Dfareporting_City';
protected $citiesDataType = 'array';
public $kind;
public function setCities($cities)
{
$this->cities = $cities;
}
public function getCities()
{
return $this->cities;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,102 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_City extends Google_Model
{
public $countryCode;
public $countryDartId;
public $dartId;
public $kind;
public $metroCode;
public $metroDmaId;
public $name;
public $regionCode;
public $regionDartId;
public function setCountryCode($countryCode)
{
$this->countryCode = $countryCode;
}
public function getCountryCode()
{
return $this->countryCode;
}
public function setCountryDartId($countryDartId)
{
$this->countryDartId = $countryDartId;
}
public function getCountryDartId()
{
return $this->countryDartId;
}
public function setDartId($dartId)
{
$this->dartId = $dartId;
}
public function getDartId()
{
return $this->dartId;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setMetroCode($metroCode)
{
$this->metroCode = $metroCode;
}
public function getMetroCode()
{
return $this->metroCode;
}
public function setMetroDmaId($metroDmaId)
{
$this->metroDmaId = $metroDmaId;
}
public function getMetroDmaId()
{
return $this->metroDmaId;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setRegionCode($regionCode)
{
$this->regionCode = $regionCode;
}
public function getRegionCode()
{
return $this->regionCode;
}
public function setRegionDartId($regionDartId)
{
$this->regionDartId = $regionDartId;
}
public function getRegionDartId()
{
return $this->regionDartId;
}
}

View File

@@ -0,0 +1,48 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ClickTag extends Google_Model
{
public $eventName;
public $name;
public $value;
public function setEventName($eventName)
{
$this->eventName = $eventName;
}
public function getEventName()
{
return $this->eventName;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setValue($value)
{
$this->value = $value;
}
public function getValue()
{
return $this->value;
}
}

View File

@@ -0,0 +1,57 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ClickThroughUrl extends Google_Model
{
public $computedClickThroughUrl;
public $customClickThroughUrl;
public $defaultLandingPage;
public $landingPageId;
public function setComputedClickThroughUrl($computedClickThroughUrl)
{
$this->computedClickThroughUrl = $computedClickThroughUrl;
}
public function getComputedClickThroughUrl()
{
return $this->computedClickThroughUrl;
}
public function setCustomClickThroughUrl($customClickThroughUrl)
{
$this->customClickThroughUrl = $customClickThroughUrl;
}
public function getCustomClickThroughUrl()
{
return $this->customClickThroughUrl;
}
public function setDefaultLandingPage($defaultLandingPage)
{
$this->defaultLandingPage = $defaultLandingPage;
}
public function getDefaultLandingPage()
{
return $this->defaultLandingPage;
}
public function setLandingPageId($landingPageId)
{
$this->landingPageId = $landingPageId;
}
public function getLandingPageId()
{
return $this->landingPageId;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ClickThroughUrlSuffixProperties extends Google_Model
{
public $clickThroughUrlSuffix;
public $overrideInheritedSuffix;
public function setClickThroughUrlSuffix($clickThroughUrlSuffix)
{
$this->clickThroughUrlSuffix = $clickThroughUrlSuffix;
}
public function getClickThroughUrlSuffix()
{
return $this->clickThroughUrlSuffix;
}
public function setOverrideInheritedSuffix($overrideInheritedSuffix)
{
$this->overrideInheritedSuffix = $overrideInheritedSuffix;
}
public function getOverrideInheritedSuffix()
{
return $this->overrideInheritedSuffix;
}
}

View File

@@ -0,0 +1,40 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CompanionClickThroughOverride extends Google_Model
{
protected $clickThroughUrlType = 'Google_Service_Dfareporting_ClickThroughUrl';
protected $clickThroughUrlDataType = '';
public $creativeId;
public function setClickThroughUrl(Google_Service_Dfareporting_ClickThroughUrl $clickThroughUrl)
{
$this->clickThroughUrl = $clickThroughUrl;
}
public function getClickThroughUrl()
{
return $this->clickThroughUrl;
}
public function setCreativeId($creativeId)
{
$this->creativeId = $creativeId;
}
public function getCreativeId()
{
return $this->creativeId;
}
}

View File

@@ -0,0 +1,59 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CompanionSetting extends Google_Collection
{
protected $collection_key = 'enabledSizes';
public $companionsDisabled;
protected $enabledSizesType = 'Google_Service_Dfareporting_Size';
protected $enabledSizesDataType = 'array';
public $imageOnly;
public $kind;
public function setCompanionsDisabled($companionsDisabled)
{
$this->companionsDisabled = $companionsDisabled;
}
public function getCompanionsDisabled()
{
return $this->companionsDisabled;
}
public function setEnabledSizes($enabledSizes)
{
$this->enabledSizes = $enabledSizes;
}
public function getEnabledSizes()
{
return $this->enabledSizes;
}
public function setImageOnly($imageOnly)
{
$this->imageOnly = $imageOnly;
}
public function getImageOnly()
{
return $this->imageOnly;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,80 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CompatibleFields extends Google_Model
{
protected $crossDimensionReachReportCompatibleFieldsType = 'Google_Service_Dfareporting_CrossDimensionReachReportCompatibleFields';
protected $crossDimensionReachReportCompatibleFieldsDataType = '';
protected $floodlightReportCompatibleFieldsType = 'Google_Service_Dfareporting_FloodlightReportCompatibleFields';
protected $floodlightReportCompatibleFieldsDataType = '';
public $kind;
protected $pathToConversionReportCompatibleFieldsType = 'Google_Service_Dfareporting_PathToConversionReportCompatibleFields';
protected $pathToConversionReportCompatibleFieldsDataType = '';
protected $reachReportCompatibleFieldsType = 'Google_Service_Dfareporting_ReachReportCompatibleFields';
protected $reachReportCompatibleFieldsDataType = '';
protected $reportCompatibleFieldsType = 'Google_Service_Dfareporting_ReportCompatibleFields';
protected $reportCompatibleFieldsDataType = '';
public function setCrossDimensionReachReportCompatibleFields(Google_Service_Dfareporting_CrossDimensionReachReportCompatibleFields $crossDimensionReachReportCompatibleFields)
{
$this->crossDimensionReachReportCompatibleFields = $crossDimensionReachReportCompatibleFields;
}
public function getCrossDimensionReachReportCompatibleFields()
{
return $this->crossDimensionReachReportCompatibleFields;
}
public function setFloodlightReportCompatibleFields(Google_Service_Dfareporting_FloodlightReportCompatibleFields $floodlightReportCompatibleFields)
{
$this->floodlightReportCompatibleFields = $floodlightReportCompatibleFields;
}
public function getFloodlightReportCompatibleFields()
{
return $this->floodlightReportCompatibleFields;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setPathToConversionReportCompatibleFields(Google_Service_Dfareporting_PathToConversionReportCompatibleFields $pathToConversionReportCompatibleFields)
{
$this->pathToConversionReportCompatibleFields = $pathToConversionReportCompatibleFields;
}
public function getPathToConversionReportCompatibleFields()
{
return $this->pathToConversionReportCompatibleFields;
}
public function setReachReportCompatibleFields(Google_Service_Dfareporting_ReachReportCompatibleFields $reachReportCompatibleFields)
{
$this->reachReportCompatibleFields = $reachReportCompatibleFields;
}
public function getReachReportCompatibleFields()
{
return $this->reachReportCompatibleFields;
}
public function setReportCompatibleFields(Google_Service_Dfareporting_ReportCompatibleFields $reportCompatibleFields)
{
$this->reportCompatibleFields = $reportCompatibleFields;
}
public function getReportCompatibleFields()
{
return $this->reportCompatibleFields;
}
}

View File

@@ -0,0 +1,48 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ConnectionType extends Google_Model
{
public $id;
public $kind;
public $name;
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}

View File

@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ConnectionTypesListResponse extends Google_Collection
{
protected $collection_key = 'connectionTypes';
protected $connectionTypesType = 'Google_Service_Dfareporting_ConnectionType';
protected $connectionTypesDataType = 'array';
public $kind;
public function setConnectionTypes($connectionTypes)
{
$this->connectionTypes = $connectionTypes;
}
public function getConnectionTypes()
{
return $this->connectionTypes;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ContentCategoriesListResponse extends Google_Collection
{
protected $collection_key = 'contentCategories';
protected $contentCategoriesType = 'Google_Service_Dfareporting_ContentCategory';
protected $contentCategoriesDataType = 'array';
public $kind;
public $nextPageToken;
public function setContentCategories($contentCategories)
{
$this->contentCategories = $contentCategories;
}
public function getContentCategories()
{
return $this->contentCategories;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,57 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ContentCategory extends Google_Model
{
public $accountId;
public $id;
public $kind;
public $name;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}

View File

@@ -0,0 +1,140 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_Conversion extends Google_Collection
{
protected $collection_key = 'encryptedUserIdCandidates';
public $childDirectedTreatment;
protected $customVariablesType = 'Google_Service_Dfareporting_CustomFloodlightVariable';
protected $customVariablesDataType = 'array';
public $encryptedUserId;
public $encryptedUserIdCandidates;
public $floodlightActivityId;
public $floodlightConfigurationId;
public $kind;
public $limitAdTracking;
public $mobileDeviceId;
public $ordinal;
public $quantity;
public $timestampMicros;
public $value;
public function setChildDirectedTreatment($childDirectedTreatment)
{
$this->childDirectedTreatment = $childDirectedTreatment;
}
public function getChildDirectedTreatment()
{
return $this->childDirectedTreatment;
}
public function setCustomVariables($customVariables)
{
$this->customVariables = $customVariables;
}
public function getCustomVariables()
{
return $this->customVariables;
}
public function setEncryptedUserId($encryptedUserId)
{
$this->encryptedUserId = $encryptedUserId;
}
public function getEncryptedUserId()
{
return $this->encryptedUserId;
}
public function setEncryptedUserIdCandidates($encryptedUserIdCandidates)
{
$this->encryptedUserIdCandidates = $encryptedUserIdCandidates;
}
public function getEncryptedUserIdCandidates()
{
return $this->encryptedUserIdCandidates;
}
public function setFloodlightActivityId($floodlightActivityId)
{
$this->floodlightActivityId = $floodlightActivityId;
}
public function getFloodlightActivityId()
{
return $this->floodlightActivityId;
}
public function setFloodlightConfigurationId($floodlightConfigurationId)
{
$this->floodlightConfigurationId = $floodlightConfigurationId;
}
public function getFloodlightConfigurationId()
{
return $this->floodlightConfigurationId;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setLimitAdTracking($limitAdTracking)
{
$this->limitAdTracking = $limitAdTracking;
}
public function getLimitAdTracking()
{
return $this->limitAdTracking;
}
public function setMobileDeviceId($mobileDeviceId)
{
$this->mobileDeviceId = $mobileDeviceId;
}
public function getMobileDeviceId()
{
return $this->mobileDeviceId;
}
public function setOrdinal($ordinal)
{
$this->ordinal = $ordinal;
}
public function getOrdinal()
{
return $this->ordinal;
}
public function setQuantity($quantity)
{
$this->quantity = $quantity;
}
public function getQuantity()
{
return $this->quantity;
}
public function setTimestampMicros($timestampMicros)
{
$this->timestampMicros = $timestampMicros;
}
public function getTimestampMicros()
{
return $this->timestampMicros;
}
public function setValue($value)
{
$this->value = $value;
}
public function getValue()
{
return $this->value;
}
}

View File

@@ -0,0 +1,48 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ConversionError extends Google_Model
{
public $code;
public $kind;
public $message;
public function setCode($code)
{
$this->code = $code;
}
public function getCode()
{
return $this->code;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setMessage($message)
{
$this->message = $message;
}
public function getMessage()
{
return $this->message;
}
}

View File

@@ -0,0 +1,51 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ConversionStatus extends Google_Collection
{
protected $collection_key = 'errors';
protected $conversionType = 'Google_Service_Dfareporting_Conversion';
protected $conversionDataType = '';
protected $errorsType = 'Google_Service_Dfareporting_ConversionError';
protected $errorsDataType = 'array';
public $kind;
public function setConversion(Google_Service_Dfareporting_Conversion $conversion)
{
$this->conversion = $conversion;
}
public function getConversion()
{
return $this->conversion;
}
public function setErrors($errors)
{
$this->errors = $errors;
}
public function getErrors()
{
return $this->errors;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,51 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ConversionsBatchInsertRequest extends Google_Collection
{
protected $collection_key = 'conversions';
protected $conversionsType = 'Google_Service_Dfareporting_Conversion';
protected $conversionsDataType = 'array';
protected $encryptionInfoType = 'Google_Service_Dfareporting_EncryptionInfo';
protected $encryptionInfoDataType = '';
public $kind;
public function setConversions($conversions)
{
$this->conversions = $conversions;
}
public function getConversions()
{
return $this->conversions;
}
public function setEncryptionInfo(Google_Service_Dfareporting_EncryptionInfo $encryptionInfo)
{
$this->encryptionInfo = $encryptionInfo;
}
public function getEncryptionInfo()
{
return $this->encryptionInfo;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_ConversionsBatchInsertResponse extends Google_Collection
{
protected $collection_key = 'status';
public $hasFailures;
public $kind;
protected $statusType = 'Google_Service_Dfareporting_ConversionStatus';
protected $statusDataType = 'array';
public function setHasFailures($hasFailures)
{
$this->hasFailures = $hasFailures;
}
public function getHasFailures()
{
return $this->hasFailures;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setStatus($status)
{
$this->status = $status;
}
public function getStatus()
{
return $this->status;
}
}

View File

@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CountriesListResponse extends Google_Collection
{
protected $collection_key = 'countries';
protected $countriesType = 'Google_Service_Dfareporting_Country';
protected $countriesDataType = 'array';
public $kind;
public function setCountries($countries)
{
$this->countries = $countries;
}
public function getCountries()
{
return $this->countries;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,66 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_Country extends Google_Model
{
public $countryCode;
public $dartId;
public $kind;
public $name;
public $sslEnabled;
public function setCountryCode($countryCode)
{
$this->countryCode = $countryCode;
}
public function getCountryCode()
{
return $this->countryCode;
}
public function setDartId($dartId)
{
$this->dartId = $dartId;
}
public function getDartId()
{
return $this->dartId;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setSslEnabled($sslEnabled)
{
$this->sslEnabled = $sslEnabled;
}
public function getSslEnabled()
{
return $this->sslEnabled;
}
}

View File

@@ -0,0 +1,599 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_Creative extends Google_Collection
{
protected $collection_key = 'timerCustomEvents';
protected $internal_gapi_mappings = array(
"autoAdvanceImages" => "auto_advance_images",
);
public $accountId;
public $active;
public $adParameters;
public $adTagKeys;
public $advertiserId;
public $allowScriptAccess;
public $archived;
public $artworkType;
public $authoringSource;
public $authoringTool;
public $autoAdvanceImages;
public $backgroundColor;
public $backupImageClickThroughUrl;
public $backupImageFeatures;
public $backupImageReportingLabel;
protected $backupImageTargetWindowType = 'Google_Service_Dfareporting_TargetWindow';
protected $backupImageTargetWindowDataType = '';
protected $clickTagsType = 'Google_Service_Dfareporting_ClickTag';
protected $clickTagsDataType = 'array';
public $commercialId;
public $companionCreatives;
public $compatibility;
public $convertFlashToHtml5;
protected $counterCustomEventsType = 'Google_Service_Dfareporting_CreativeCustomEvent';
protected $counterCustomEventsDataType = 'array';
protected $creativeAssetSelectionType = 'Google_Service_Dfareporting_CreativeAssetSelection';
protected $creativeAssetSelectionDataType = '';
protected $creativeAssetsType = 'Google_Service_Dfareporting_CreativeAsset';
protected $creativeAssetsDataType = 'array';
protected $creativeFieldAssignmentsType = 'Google_Service_Dfareporting_CreativeFieldAssignment';
protected $creativeFieldAssignmentsDataType = 'array';
public $customKeyValues;
public $dynamicAssetSelection;
protected $exitCustomEventsType = 'Google_Service_Dfareporting_CreativeCustomEvent';
protected $exitCustomEventsDataType = 'array';
protected $fsCommandType = 'Google_Service_Dfareporting_FsCommand';
protected $fsCommandDataType = '';
public $htmlCode;
public $htmlCodeLocked;
public $id;
protected $idDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $idDimensionValueDataType = '';
public $kind;
protected $lastModifiedInfoType = 'Google_Service_Dfareporting_LastModifiedInfo';
protected $lastModifiedInfoDataType = '';
public $latestTraffickedCreativeId;
public $name;
public $overrideCss;
protected $progressOffsetType = 'Google_Service_Dfareporting_VideoOffset';
protected $progressOffsetDataType = '';
public $redirectUrl;
public $renderingId;
protected $renderingIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $renderingIdDimensionValueDataType = '';
public $requiredFlashPluginVersion;
public $requiredFlashVersion;
protected $sizeType = 'Google_Service_Dfareporting_Size';
protected $sizeDataType = '';
protected $skipOffsetType = 'Google_Service_Dfareporting_VideoOffset';
protected $skipOffsetDataType = '';
public $skippable;
public $sslCompliant;
public $sslOverride;
public $studioAdvertiserId;
public $studioCreativeId;
public $studioTraffickedCreativeId;
public $subaccountId;
public $thirdPartyBackupImageImpressionsUrl;
public $thirdPartyRichMediaImpressionsUrl;
protected $thirdPartyUrlsType = 'Google_Service_Dfareporting_ThirdPartyTrackingUrl';
protected $thirdPartyUrlsDataType = 'array';
protected $timerCustomEventsType = 'Google_Service_Dfareporting_CreativeCustomEvent';
protected $timerCustomEventsDataType = 'array';
public $totalFileSize;
public $type;
public $version;
public $videoDescription;
public $videoDuration;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setActive($active)
{
$this->active = $active;
}
public function getActive()
{
return $this->active;
}
public function setAdParameters($adParameters)
{
$this->adParameters = $adParameters;
}
public function getAdParameters()
{
return $this->adParameters;
}
public function setAdTagKeys($adTagKeys)
{
$this->adTagKeys = $adTagKeys;
}
public function getAdTagKeys()
{
return $this->adTagKeys;
}
public function setAdvertiserId($advertiserId)
{
$this->advertiserId = $advertiserId;
}
public function getAdvertiserId()
{
return $this->advertiserId;
}
public function setAllowScriptAccess($allowScriptAccess)
{
$this->allowScriptAccess = $allowScriptAccess;
}
public function getAllowScriptAccess()
{
return $this->allowScriptAccess;
}
public function setArchived($archived)
{
$this->archived = $archived;
}
public function getArchived()
{
return $this->archived;
}
public function setArtworkType($artworkType)
{
$this->artworkType = $artworkType;
}
public function getArtworkType()
{
return $this->artworkType;
}
public function setAuthoringSource($authoringSource)
{
$this->authoringSource = $authoringSource;
}
public function getAuthoringSource()
{
return $this->authoringSource;
}
public function setAuthoringTool($authoringTool)
{
$this->authoringTool = $authoringTool;
}
public function getAuthoringTool()
{
return $this->authoringTool;
}
public function setAutoAdvanceImages($autoAdvanceImages)
{
$this->autoAdvanceImages = $autoAdvanceImages;
}
public function getAutoAdvanceImages()
{
return $this->autoAdvanceImages;
}
public function setBackgroundColor($backgroundColor)
{
$this->backgroundColor = $backgroundColor;
}
public function getBackgroundColor()
{
return $this->backgroundColor;
}
public function setBackupImageClickThroughUrl($backupImageClickThroughUrl)
{
$this->backupImageClickThroughUrl = $backupImageClickThroughUrl;
}
public function getBackupImageClickThroughUrl()
{
return $this->backupImageClickThroughUrl;
}
public function setBackupImageFeatures($backupImageFeatures)
{
$this->backupImageFeatures = $backupImageFeatures;
}
public function getBackupImageFeatures()
{
return $this->backupImageFeatures;
}
public function setBackupImageReportingLabel($backupImageReportingLabel)
{
$this->backupImageReportingLabel = $backupImageReportingLabel;
}
public function getBackupImageReportingLabel()
{
return $this->backupImageReportingLabel;
}
public function setBackupImageTargetWindow(Google_Service_Dfareporting_TargetWindow $backupImageTargetWindow)
{
$this->backupImageTargetWindow = $backupImageTargetWindow;
}
public function getBackupImageTargetWindow()
{
return $this->backupImageTargetWindow;
}
public function setClickTags($clickTags)
{
$this->clickTags = $clickTags;
}
public function getClickTags()
{
return $this->clickTags;
}
public function setCommercialId($commercialId)
{
$this->commercialId = $commercialId;
}
public function getCommercialId()
{
return $this->commercialId;
}
public function setCompanionCreatives($companionCreatives)
{
$this->companionCreatives = $companionCreatives;
}
public function getCompanionCreatives()
{
return $this->companionCreatives;
}
public function setCompatibility($compatibility)
{
$this->compatibility = $compatibility;
}
public function getCompatibility()
{
return $this->compatibility;
}
public function setConvertFlashToHtml5($convertFlashToHtml5)
{
$this->convertFlashToHtml5 = $convertFlashToHtml5;
}
public function getConvertFlashToHtml5()
{
return $this->convertFlashToHtml5;
}
public function setCounterCustomEvents($counterCustomEvents)
{
$this->counterCustomEvents = $counterCustomEvents;
}
public function getCounterCustomEvents()
{
return $this->counterCustomEvents;
}
public function setCreativeAssetSelection(Google_Service_Dfareporting_CreativeAssetSelection $creativeAssetSelection)
{
$this->creativeAssetSelection = $creativeAssetSelection;
}
public function getCreativeAssetSelection()
{
return $this->creativeAssetSelection;
}
public function setCreativeAssets($creativeAssets)
{
$this->creativeAssets = $creativeAssets;
}
public function getCreativeAssets()
{
return $this->creativeAssets;
}
public function setCreativeFieldAssignments($creativeFieldAssignments)
{
$this->creativeFieldAssignments = $creativeFieldAssignments;
}
public function getCreativeFieldAssignments()
{
return $this->creativeFieldAssignments;
}
public function setCustomKeyValues($customKeyValues)
{
$this->customKeyValues = $customKeyValues;
}
public function getCustomKeyValues()
{
return $this->customKeyValues;
}
public function setDynamicAssetSelection($dynamicAssetSelection)
{
$this->dynamicAssetSelection = $dynamicAssetSelection;
}
public function getDynamicAssetSelection()
{
return $this->dynamicAssetSelection;
}
public function setExitCustomEvents($exitCustomEvents)
{
$this->exitCustomEvents = $exitCustomEvents;
}
public function getExitCustomEvents()
{
return $this->exitCustomEvents;
}
public function setFsCommand(Google_Service_Dfareporting_FsCommand $fsCommand)
{
$this->fsCommand = $fsCommand;
}
public function getFsCommand()
{
return $this->fsCommand;
}
public function setHtmlCode($htmlCode)
{
$this->htmlCode = $htmlCode;
}
public function getHtmlCode()
{
return $this->htmlCode;
}
public function setHtmlCodeLocked($htmlCodeLocked)
{
$this->htmlCodeLocked = $htmlCodeLocked;
}
public function getHtmlCodeLocked()
{
return $this->htmlCodeLocked;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue)
{
$this->idDimensionValue = $idDimensionValue;
}
public function getIdDimensionValue()
{
return $this->idDimensionValue;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo)
{
$this->lastModifiedInfo = $lastModifiedInfo;
}
public function getLastModifiedInfo()
{
return $this->lastModifiedInfo;
}
public function setLatestTraffickedCreativeId($latestTraffickedCreativeId)
{
$this->latestTraffickedCreativeId = $latestTraffickedCreativeId;
}
public function getLatestTraffickedCreativeId()
{
return $this->latestTraffickedCreativeId;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setOverrideCss($overrideCss)
{
$this->overrideCss = $overrideCss;
}
public function getOverrideCss()
{
return $this->overrideCss;
}
public function setProgressOffset(Google_Service_Dfareporting_VideoOffset $progressOffset)
{
$this->progressOffset = $progressOffset;
}
public function getProgressOffset()
{
return $this->progressOffset;
}
public function setRedirectUrl($redirectUrl)
{
$this->redirectUrl = $redirectUrl;
}
public function getRedirectUrl()
{
return $this->redirectUrl;
}
public function setRenderingId($renderingId)
{
$this->renderingId = $renderingId;
}
public function getRenderingId()
{
return $this->renderingId;
}
public function setRenderingIdDimensionValue(Google_Service_Dfareporting_DimensionValue $renderingIdDimensionValue)
{
$this->renderingIdDimensionValue = $renderingIdDimensionValue;
}
public function getRenderingIdDimensionValue()
{
return $this->renderingIdDimensionValue;
}
public function setRequiredFlashPluginVersion($requiredFlashPluginVersion)
{
$this->requiredFlashPluginVersion = $requiredFlashPluginVersion;
}
public function getRequiredFlashPluginVersion()
{
return $this->requiredFlashPluginVersion;
}
public function setRequiredFlashVersion($requiredFlashVersion)
{
$this->requiredFlashVersion = $requiredFlashVersion;
}
public function getRequiredFlashVersion()
{
return $this->requiredFlashVersion;
}
public function setSize(Google_Service_Dfareporting_Size $size)
{
$this->size = $size;
}
public function getSize()
{
return $this->size;
}
public function setSkipOffset(Google_Service_Dfareporting_VideoOffset $skipOffset)
{
$this->skipOffset = $skipOffset;
}
public function getSkipOffset()
{
return $this->skipOffset;
}
public function setSkippable($skippable)
{
$this->skippable = $skippable;
}
public function getSkippable()
{
return $this->skippable;
}
public function setSslCompliant($sslCompliant)
{
$this->sslCompliant = $sslCompliant;
}
public function getSslCompliant()
{
return $this->sslCompliant;
}
public function setSslOverride($sslOverride)
{
$this->sslOverride = $sslOverride;
}
public function getSslOverride()
{
return $this->sslOverride;
}
public function setStudioAdvertiserId($studioAdvertiserId)
{
$this->studioAdvertiserId = $studioAdvertiserId;
}
public function getStudioAdvertiserId()
{
return $this->studioAdvertiserId;
}
public function setStudioCreativeId($studioCreativeId)
{
$this->studioCreativeId = $studioCreativeId;
}
public function getStudioCreativeId()
{
return $this->studioCreativeId;
}
public function setStudioTraffickedCreativeId($studioTraffickedCreativeId)
{
$this->studioTraffickedCreativeId = $studioTraffickedCreativeId;
}
public function getStudioTraffickedCreativeId()
{
return $this->studioTraffickedCreativeId;
}
public function setSubaccountId($subaccountId)
{
$this->subaccountId = $subaccountId;
}
public function getSubaccountId()
{
return $this->subaccountId;
}
public function setThirdPartyBackupImageImpressionsUrl($thirdPartyBackupImageImpressionsUrl)
{
$this->thirdPartyBackupImageImpressionsUrl = $thirdPartyBackupImageImpressionsUrl;
}
public function getThirdPartyBackupImageImpressionsUrl()
{
return $this->thirdPartyBackupImageImpressionsUrl;
}
public function setThirdPartyRichMediaImpressionsUrl($thirdPartyRichMediaImpressionsUrl)
{
$this->thirdPartyRichMediaImpressionsUrl = $thirdPartyRichMediaImpressionsUrl;
}
public function getThirdPartyRichMediaImpressionsUrl()
{
return $this->thirdPartyRichMediaImpressionsUrl;
}
public function setThirdPartyUrls($thirdPartyUrls)
{
$this->thirdPartyUrls = $thirdPartyUrls;
}
public function getThirdPartyUrls()
{
return $this->thirdPartyUrls;
}
public function setTimerCustomEvents($timerCustomEvents)
{
$this->timerCustomEvents = $timerCustomEvents;
}
public function getTimerCustomEvents()
{
return $this->timerCustomEvents;
}
public function setTotalFileSize($totalFileSize)
{
$this->totalFileSize = $totalFileSize;
}
public function getTotalFileSize()
{
return $this->totalFileSize;
}
public function setType($type)
{
$this->type = $type;
}
public function getType()
{
return $this->type;
}
public function setVersion($version)
{
$this->version = $version;
}
public function getVersion()
{
return $this->version;
}
public function setVideoDescription($videoDescription)
{
$this->videoDescription = $videoDescription;
}
public function getVideoDescription()
{
return $this->videoDescription;
}
public function setVideoDuration($videoDuration)
{
$this->videoDuration = $videoDuration;
}
public function getVideoDuration()
{
return $this->videoDuration;
}
}

View File

@@ -0,0 +1,426 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeAsset extends Google_Collection
{
protected $collection_key = 'detectedFeatures';
public $actionScript3;
public $active;
public $alignment;
public $artworkType;
protected $assetIdentifierType = 'Google_Service_Dfareporting_CreativeAssetId';
protected $assetIdentifierDataType = '';
protected $backupImageExitType = 'Google_Service_Dfareporting_CreativeCustomEvent';
protected $backupImageExitDataType = '';
public $bitRate;
public $childAssetType;
protected $collapsedSizeType = 'Google_Service_Dfareporting_Size';
protected $collapsedSizeDataType = '';
public $companionCreativeIds;
public $customStartTimeValue;
public $detectedFeatures;
public $displayType;
public $duration;
public $durationType;
protected $expandedDimensionType = 'Google_Service_Dfareporting_Size';
protected $expandedDimensionDataType = '';
public $fileSize;
public $flashVersion;
public $hideFlashObjects;
public $hideSelectionBoxes;
public $horizontallyLocked;
public $id;
protected $idDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $idDimensionValueDataType = '';
public $mimeType;
protected $offsetType = 'Google_Service_Dfareporting_OffsetPosition';
protected $offsetDataType = '';
public $originalBackup;
protected $positionType = 'Google_Service_Dfareporting_OffsetPosition';
protected $positionDataType = '';
public $positionLeftUnit;
public $positionTopUnit;
public $progressiveServingUrl;
public $pushdown;
public $pushdownDuration;
public $role;
protected $sizeType = 'Google_Service_Dfareporting_Size';
protected $sizeDataType = '';
public $sslCompliant;
public $startTimeType;
public $streamingServingUrl;
public $transparency;
public $verticallyLocked;
public $videoDuration;
public $windowMode;
public $zIndex;
public $zipFilename;
public $zipFilesize;
public function setActionScript3($actionScript3)
{
$this->actionScript3 = $actionScript3;
}
public function getActionScript3()
{
return $this->actionScript3;
}
public function setActive($active)
{
$this->active = $active;
}
public function getActive()
{
return $this->active;
}
public function setAlignment($alignment)
{
$this->alignment = $alignment;
}
public function getAlignment()
{
return $this->alignment;
}
public function setArtworkType($artworkType)
{
$this->artworkType = $artworkType;
}
public function getArtworkType()
{
return $this->artworkType;
}
public function setAssetIdentifier(Google_Service_Dfareporting_CreativeAssetId $assetIdentifier)
{
$this->assetIdentifier = $assetIdentifier;
}
public function getAssetIdentifier()
{
return $this->assetIdentifier;
}
public function setBackupImageExit(Google_Service_Dfareporting_CreativeCustomEvent $backupImageExit)
{
$this->backupImageExit = $backupImageExit;
}
public function getBackupImageExit()
{
return $this->backupImageExit;
}
public function setBitRate($bitRate)
{
$this->bitRate = $bitRate;
}
public function getBitRate()
{
return $this->bitRate;
}
public function setChildAssetType($childAssetType)
{
$this->childAssetType = $childAssetType;
}
public function getChildAssetType()
{
return $this->childAssetType;
}
public function setCollapsedSize(Google_Service_Dfareporting_Size $collapsedSize)
{
$this->collapsedSize = $collapsedSize;
}
public function getCollapsedSize()
{
return $this->collapsedSize;
}
public function setCompanionCreativeIds($companionCreativeIds)
{
$this->companionCreativeIds = $companionCreativeIds;
}
public function getCompanionCreativeIds()
{
return $this->companionCreativeIds;
}
public function setCustomStartTimeValue($customStartTimeValue)
{
$this->customStartTimeValue = $customStartTimeValue;
}
public function getCustomStartTimeValue()
{
return $this->customStartTimeValue;
}
public function setDetectedFeatures($detectedFeatures)
{
$this->detectedFeatures = $detectedFeatures;
}
public function getDetectedFeatures()
{
return $this->detectedFeatures;
}
public function setDisplayType($displayType)
{
$this->displayType = $displayType;
}
public function getDisplayType()
{
return $this->displayType;
}
public function setDuration($duration)
{
$this->duration = $duration;
}
public function getDuration()
{
return $this->duration;
}
public function setDurationType($durationType)
{
$this->durationType = $durationType;
}
public function getDurationType()
{
return $this->durationType;
}
public function setExpandedDimension(Google_Service_Dfareporting_Size $expandedDimension)
{
$this->expandedDimension = $expandedDimension;
}
public function getExpandedDimension()
{
return $this->expandedDimension;
}
public function setFileSize($fileSize)
{
$this->fileSize = $fileSize;
}
public function getFileSize()
{
return $this->fileSize;
}
public function setFlashVersion($flashVersion)
{
$this->flashVersion = $flashVersion;
}
public function getFlashVersion()
{
return $this->flashVersion;
}
public function setHideFlashObjects($hideFlashObjects)
{
$this->hideFlashObjects = $hideFlashObjects;
}
public function getHideFlashObjects()
{
return $this->hideFlashObjects;
}
public function setHideSelectionBoxes($hideSelectionBoxes)
{
$this->hideSelectionBoxes = $hideSelectionBoxes;
}
public function getHideSelectionBoxes()
{
return $this->hideSelectionBoxes;
}
public function setHorizontallyLocked($horizontallyLocked)
{
$this->horizontallyLocked = $horizontallyLocked;
}
public function getHorizontallyLocked()
{
return $this->horizontallyLocked;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue)
{
$this->idDimensionValue = $idDimensionValue;
}
public function getIdDimensionValue()
{
return $this->idDimensionValue;
}
public function setMimeType($mimeType)
{
$this->mimeType = $mimeType;
}
public function getMimeType()
{
return $this->mimeType;
}
public function setOffset(Google_Service_Dfareporting_OffsetPosition $offset)
{
$this->offset = $offset;
}
public function getOffset()
{
return $this->offset;
}
public function setOriginalBackup($originalBackup)
{
$this->originalBackup = $originalBackup;
}
public function getOriginalBackup()
{
return $this->originalBackup;
}
public function setPosition(Google_Service_Dfareporting_OffsetPosition $position)
{
$this->position = $position;
}
public function getPosition()
{
return $this->position;
}
public function setPositionLeftUnit($positionLeftUnit)
{
$this->positionLeftUnit = $positionLeftUnit;
}
public function getPositionLeftUnit()
{
return $this->positionLeftUnit;
}
public function setPositionTopUnit($positionTopUnit)
{
$this->positionTopUnit = $positionTopUnit;
}
public function getPositionTopUnit()
{
return $this->positionTopUnit;
}
public function setProgressiveServingUrl($progressiveServingUrl)
{
$this->progressiveServingUrl = $progressiveServingUrl;
}
public function getProgressiveServingUrl()
{
return $this->progressiveServingUrl;
}
public function setPushdown($pushdown)
{
$this->pushdown = $pushdown;
}
public function getPushdown()
{
return $this->pushdown;
}
public function setPushdownDuration($pushdownDuration)
{
$this->pushdownDuration = $pushdownDuration;
}
public function getPushdownDuration()
{
return $this->pushdownDuration;
}
public function setRole($role)
{
$this->role = $role;
}
public function getRole()
{
return $this->role;
}
public function setSize(Google_Service_Dfareporting_Size $size)
{
$this->size = $size;
}
public function getSize()
{
return $this->size;
}
public function setSslCompliant($sslCompliant)
{
$this->sslCompliant = $sslCompliant;
}
public function getSslCompliant()
{
return $this->sslCompliant;
}
public function setStartTimeType($startTimeType)
{
$this->startTimeType = $startTimeType;
}
public function getStartTimeType()
{
return $this->startTimeType;
}
public function setStreamingServingUrl($streamingServingUrl)
{
$this->streamingServingUrl = $streamingServingUrl;
}
public function getStreamingServingUrl()
{
return $this->streamingServingUrl;
}
public function setTransparency($transparency)
{
$this->transparency = $transparency;
}
public function getTransparency()
{
return $this->transparency;
}
public function setVerticallyLocked($verticallyLocked)
{
$this->verticallyLocked = $verticallyLocked;
}
public function getVerticallyLocked()
{
return $this->verticallyLocked;
}
public function setVideoDuration($videoDuration)
{
$this->videoDuration = $videoDuration;
}
public function getVideoDuration()
{
return $this->videoDuration;
}
public function setWindowMode($windowMode)
{
$this->windowMode = $windowMode;
}
public function getWindowMode()
{
return $this->windowMode;
}
public function setZIndex($zIndex)
{
$this->zIndex = $zIndex;
}
public function getZIndex()
{
return $this->zIndex;
}
public function setZipFilename($zipFilename)
{
$this->zipFilename = $zipFilename;
}
public function getZipFilename()
{
return $this->zipFilename;
}
public function setZipFilesize($zipFilesize)
{
$this->zipFilesize = $zipFilesize;
}
public function getZipFilesize()
{
return $this->zipFilesize;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeAssetId extends Google_Model
{
public $name;
public $type;
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setType($type)
{
$this->type = $type;
}
public function getType()
{
return $this->type;
}
}

View File

@@ -0,0 +1,88 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeAssetMetadata extends Google_Collection
{
protected $collection_key = 'warnedValidationRules';
protected $assetIdentifierType = 'Google_Service_Dfareporting_CreativeAssetId';
protected $assetIdentifierDataType = '';
protected $clickTagsType = 'Google_Service_Dfareporting_ClickTag';
protected $clickTagsDataType = 'array';
public $detectedFeatures;
public $id;
protected $idDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $idDimensionValueDataType = '';
public $kind;
public $warnedValidationRules;
public function setAssetIdentifier(Google_Service_Dfareporting_CreativeAssetId $assetIdentifier)
{
$this->assetIdentifier = $assetIdentifier;
}
public function getAssetIdentifier()
{
return $this->assetIdentifier;
}
public function setClickTags($clickTags)
{
$this->clickTags = $clickTags;
}
public function getClickTags()
{
return $this->clickTags;
}
public function setDetectedFeatures($detectedFeatures)
{
$this->detectedFeatures = $detectedFeatures;
}
public function getDetectedFeatures()
{
return $this->detectedFeatures;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue)
{
$this->idDimensionValue = $idDimensionValue;
}
public function getIdDimensionValue()
{
return $this->idDimensionValue;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setWarnedValidationRules($warnedValidationRules)
{
$this->warnedValidationRules = $warnedValidationRules;
}
public function getWarnedValidationRules()
{
return $this->warnedValidationRules;
}
}

View File

@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeAssetSelection extends Google_Collection
{
protected $collection_key = 'rules';
public $defaultAssetId;
protected $rulesType = 'Google_Service_Dfareporting_Rule';
protected $rulesDataType = 'array';
public function setDefaultAssetId($defaultAssetId)
{
$this->defaultAssetId = $defaultAssetId;
}
public function getDefaultAssetId()
{
return $this->defaultAssetId;
}
public function setRules($rules)
{
$this->rules = $rules;
}
public function getRules()
{
return $this->rules;
}
}

View File

@@ -0,0 +1,144 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeAssignment extends Google_Collection
{
protected $collection_key = 'richMediaExitOverrides';
public $active;
public $applyEventTags;
protected $clickThroughUrlType = 'Google_Service_Dfareporting_ClickThroughUrl';
protected $clickThroughUrlDataType = '';
protected $companionCreativeOverridesType = 'Google_Service_Dfareporting_CompanionClickThroughOverride';
protected $companionCreativeOverridesDataType = 'array';
protected $creativeGroupAssignmentsType = 'Google_Service_Dfareporting_CreativeGroupAssignment';
protected $creativeGroupAssignmentsDataType = 'array';
public $creativeId;
protected $creativeIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $creativeIdDimensionValueDataType = '';
public $endTime;
protected $richMediaExitOverridesType = 'Google_Service_Dfareporting_RichMediaExitOverride';
protected $richMediaExitOverridesDataType = 'array';
public $sequence;
public $sslCompliant;
public $startTime;
public $weight;
public function setActive($active)
{
$this->active = $active;
}
public function getActive()
{
return $this->active;
}
public function setApplyEventTags($applyEventTags)
{
$this->applyEventTags = $applyEventTags;
}
public function getApplyEventTags()
{
return $this->applyEventTags;
}
public function setClickThroughUrl(Google_Service_Dfareporting_ClickThroughUrl $clickThroughUrl)
{
$this->clickThroughUrl = $clickThroughUrl;
}
public function getClickThroughUrl()
{
return $this->clickThroughUrl;
}
public function setCompanionCreativeOverrides($companionCreativeOverrides)
{
$this->companionCreativeOverrides = $companionCreativeOverrides;
}
public function getCompanionCreativeOverrides()
{
return $this->companionCreativeOverrides;
}
public function setCreativeGroupAssignments($creativeGroupAssignments)
{
$this->creativeGroupAssignments = $creativeGroupAssignments;
}
public function getCreativeGroupAssignments()
{
return $this->creativeGroupAssignments;
}
public function setCreativeId($creativeId)
{
$this->creativeId = $creativeId;
}
public function getCreativeId()
{
return $this->creativeId;
}
public function setCreativeIdDimensionValue(Google_Service_Dfareporting_DimensionValue $creativeIdDimensionValue)
{
$this->creativeIdDimensionValue = $creativeIdDimensionValue;
}
public function getCreativeIdDimensionValue()
{
return $this->creativeIdDimensionValue;
}
public function setEndTime($endTime)
{
$this->endTime = $endTime;
}
public function getEndTime()
{
return $this->endTime;
}
public function setRichMediaExitOverrides($richMediaExitOverrides)
{
$this->richMediaExitOverrides = $richMediaExitOverrides;
}
public function getRichMediaExitOverrides()
{
return $this->richMediaExitOverrides;
}
public function setSequence($sequence)
{
$this->sequence = $sequence;
}
public function getSequence()
{
return $this->sequence;
}
public function setSslCompliant($sslCompliant)
{
$this->sslCompliant = $sslCompliant;
}
public function getSslCompliant()
{
return $this->sslCompliant;
}
public function setStartTime($startTime)
{
$this->startTime = $startTime;
}
public function getStartTime()
{
return $this->startTime;
}
public function setWeight($weight)
{
$this->weight = $weight;
}
public function getWeight()
{
return $this->weight;
}
}

View File

@@ -0,0 +1,112 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeCustomEvent extends Google_Model
{
public $advertiserCustomEventId;
public $advertiserCustomEventName;
public $advertiserCustomEventType;
public $artworkLabel;
public $artworkType;
public $exitUrl;
public $id;
protected $popupWindowPropertiesType = 'Google_Service_Dfareporting_PopupWindowProperties';
protected $popupWindowPropertiesDataType = '';
public $targetType;
public $videoReportingId;
public function setAdvertiserCustomEventId($advertiserCustomEventId)
{
$this->advertiserCustomEventId = $advertiserCustomEventId;
}
public function getAdvertiserCustomEventId()
{
return $this->advertiserCustomEventId;
}
public function setAdvertiserCustomEventName($advertiserCustomEventName)
{
$this->advertiserCustomEventName = $advertiserCustomEventName;
}
public function getAdvertiserCustomEventName()
{
return $this->advertiserCustomEventName;
}
public function setAdvertiserCustomEventType($advertiserCustomEventType)
{
$this->advertiserCustomEventType = $advertiserCustomEventType;
}
public function getAdvertiserCustomEventType()
{
return $this->advertiserCustomEventType;
}
public function setArtworkLabel($artworkLabel)
{
$this->artworkLabel = $artworkLabel;
}
public function getArtworkLabel()
{
return $this->artworkLabel;
}
public function setArtworkType($artworkType)
{
$this->artworkType = $artworkType;
}
public function getArtworkType()
{
return $this->artworkType;
}
public function setExitUrl($exitUrl)
{
$this->exitUrl = $exitUrl;
}
public function getExitUrl()
{
return $this->exitUrl;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setPopupWindowProperties(Google_Service_Dfareporting_PopupWindowProperties $popupWindowProperties)
{
$this->popupWindowProperties = $popupWindowProperties;
}
public function getPopupWindowProperties()
{
return $this->popupWindowProperties;
}
public function setTargetType($targetType)
{
$this->targetType = $targetType;
}
public function getTargetType()
{
return $this->targetType;
}
public function setVideoReportingId($videoReportingId)
{
$this->videoReportingId = $videoReportingId;
}
public function getVideoReportingId()
{
return $this->videoReportingId;
}
}

View File

@@ -0,0 +1,85 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeField extends Google_Model
{
public $accountId;
public $advertiserId;
protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $advertiserIdDimensionValueDataType = '';
public $id;
public $kind;
public $name;
public $subaccountId;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setAdvertiserId($advertiserId)
{
$this->advertiserId = $advertiserId;
}
public function getAdvertiserId()
{
return $this->advertiserId;
}
public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
{
$this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
}
public function getAdvertiserIdDimensionValue()
{
return $this->advertiserIdDimensionValue;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setSubaccountId($subaccountId)
{
$this->subaccountId = $subaccountId;
}
public function getSubaccountId()
{
return $this->subaccountId;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeFieldAssignment extends Google_Model
{
public $creativeFieldId;
public $creativeFieldValueId;
public function setCreativeFieldId($creativeFieldId)
{
$this->creativeFieldId = $creativeFieldId;
}
public function getCreativeFieldId()
{
return $this->creativeFieldId;
}
public function setCreativeFieldValueId($creativeFieldValueId)
{
$this->creativeFieldValueId = $creativeFieldValueId;
}
public function getCreativeFieldValueId()
{
return $this->creativeFieldValueId;
}
}

View File

@@ -0,0 +1,48 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeFieldValue extends Google_Model
{
public $id;
public $kind;
public $value;
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setValue($value)
{
$this->value = $value;
}
public function getValue()
{
return $this->value;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeFieldValuesListResponse extends Google_Collection
{
protected $collection_key = 'creativeFieldValues';
protected $creativeFieldValuesType = 'Google_Service_Dfareporting_CreativeFieldValue';
protected $creativeFieldValuesDataType = 'array';
public $kind;
public $nextPageToken;
public function setCreativeFieldValues($creativeFieldValues)
{
$this->creativeFieldValues = $creativeFieldValues;
}
public function getCreativeFieldValues()
{
return $this->creativeFieldValues;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeFieldsListResponse extends Google_Collection
{
protected $collection_key = 'creativeFields';
protected $creativeFieldsType = 'Google_Service_Dfareporting_CreativeField';
protected $creativeFieldsDataType = 'array';
public $kind;
public $nextPageToken;
public function setCreativeFields($creativeFields)
{
$this->creativeFields = $creativeFields;
}
public function getCreativeFields()
{
return $this->creativeFields;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,94 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeGroup extends Google_Model
{
public $accountId;
public $advertiserId;
protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $advertiserIdDimensionValueDataType = '';
public $groupNumber;
public $id;
public $kind;
public $name;
public $subaccountId;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setAdvertiserId($advertiserId)
{
$this->advertiserId = $advertiserId;
}
public function getAdvertiserId()
{
return $this->advertiserId;
}
public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
{
$this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
}
public function getAdvertiserIdDimensionValue()
{
return $this->advertiserIdDimensionValue;
}
public function setGroupNumber($groupNumber)
{
$this->groupNumber = $groupNumber;
}
public function getGroupNumber()
{
return $this->groupNumber;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setSubaccountId($subaccountId)
{
$this->subaccountId = $subaccountId;
}
public function getSubaccountId()
{
return $this->subaccountId;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeGroupAssignment extends Google_Model
{
public $creativeGroupId;
public $creativeGroupNumber;
public function setCreativeGroupId($creativeGroupId)
{
$this->creativeGroupId = $creativeGroupId;
}
public function getCreativeGroupId()
{
return $this->creativeGroupId;
}
public function setCreativeGroupNumber($creativeGroupNumber)
{
$this->creativeGroupNumber = $creativeGroupNumber;
}
public function getCreativeGroupNumber()
{
return $this->creativeGroupNumber;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeGroupsListResponse extends Google_Collection
{
protected $collection_key = 'creativeGroups';
protected $creativeGroupsType = 'Google_Service_Dfareporting_CreativeGroup';
protected $creativeGroupsDataType = 'array';
public $kind;
public $nextPageToken;
public function setCreativeGroups($creativeGroups)
{
$this->creativeGroups = $creativeGroups;
}
public function getCreativeGroups()
{
return $this->creativeGroups;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,59 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeOptimizationConfiguration extends Google_Collection
{
protected $collection_key = 'optimizationActivitys';
public $id;
public $name;
protected $optimizationActivitysType = 'Google_Service_Dfareporting_OptimizationActivity';
protected $optimizationActivitysDataType = 'array';
public $optimizationModel;
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setOptimizationActivitys($optimizationActivitys)
{
$this->optimizationActivitys = $optimizationActivitys;
}
public function getOptimizationActivitys()
{
return $this->optimizationActivitys;
}
public function setOptimizationModel($optimizationModel)
{
$this->optimizationModel = $optimizationModel;
}
public function getOptimizationModel()
{
return $this->optimizationModel;
}
}

View File

@@ -0,0 +1,59 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeRotation extends Google_Collection
{
protected $collection_key = 'creativeAssignments';
protected $creativeAssignmentsType = 'Google_Service_Dfareporting_CreativeAssignment';
protected $creativeAssignmentsDataType = 'array';
public $creativeOptimizationConfigurationId;
public $type;
public $weightCalculationStrategy;
public function setCreativeAssignments($creativeAssignments)
{
$this->creativeAssignments = $creativeAssignments;
}
public function getCreativeAssignments()
{
return $this->creativeAssignments;
}
public function setCreativeOptimizationConfigurationId($creativeOptimizationConfigurationId)
{
$this->creativeOptimizationConfigurationId = $creativeOptimizationConfigurationId;
}
public function getCreativeOptimizationConfigurationId()
{
return $this->creativeOptimizationConfigurationId;
}
public function setType($type)
{
$this->type = $type;
}
public function getType()
{
return $this->type;
}
public function setWeightCalculationStrategy($weightCalculationStrategy)
{
$this->weightCalculationStrategy = $weightCalculationStrategy;
}
public function getWeightCalculationStrategy()
{
return $this->weightCalculationStrategy;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativeSettings extends Google_Model
{
public $iFrameFooter;
public $iFrameHeader;
public function setIFrameFooter($iFrameFooter)
{
$this->iFrameFooter = $iFrameFooter;
}
public function getIFrameFooter()
{
return $this->iFrameFooter;
}
public function setIFrameHeader($iFrameHeader)
{
$this->iFrameHeader = $iFrameHeader;
}
public function getIFrameHeader()
{
return $this->iFrameHeader;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CreativesListResponse extends Google_Collection
{
protected $collection_key = 'creatives';
protected $creativesType = 'Google_Service_Dfareporting_Creative';
protected $creativesDataType = 'array';
public $kind;
public $nextPageToken;
public function setCreatives($creatives)
{
$this->creatives = $creatives;
}
public function getCreatives()
{
return $this->creatives;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,71 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CrossDimensionReachReportCompatibleFields extends Google_Collection
{
protected $collection_key = 'overlapMetrics';
protected $breakdownType = 'Google_Service_Dfareporting_Dimension';
protected $breakdownDataType = 'array';
protected $dimensionFiltersType = 'Google_Service_Dfareporting_Dimension';
protected $dimensionFiltersDataType = 'array';
public $kind;
protected $metricsType = 'Google_Service_Dfareporting_Metric';
protected $metricsDataType = 'array';
protected $overlapMetricsType = 'Google_Service_Dfareporting_Metric';
protected $overlapMetricsDataType = 'array';
public function setBreakdown($breakdown)
{
$this->breakdown = $breakdown;
}
public function getBreakdown()
{
return $this->breakdown;
}
public function setDimensionFilters($dimensionFilters)
{
$this->dimensionFilters = $dimensionFilters;
}
public function getDimensionFilters()
{
return $this->dimensionFilters;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setMetrics($metrics)
{
$this->metrics = $metrics;
}
public function getMetrics()
{
return $this->metrics;
}
public function setOverlapMetrics($overlapMetrics)
{
$this->overlapMetrics = $overlapMetrics;
}
public function getOverlapMetrics()
{
return $this->overlapMetrics;
}
}

View File

@@ -0,0 +1,48 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CustomFloodlightVariable extends Google_Model
{
public $kind;
public $type;
public $value;
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setType($type)
{
$this->type = $type;
}
public function getType()
{
return $this->type;
}
public function setValue($value)
{
$this->value = $value;
}
public function getValue()
{
return $this->value;
}
}

View File

@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_CustomRichMediaEvents extends Google_Collection
{
protected $collection_key = 'filteredEventIds';
protected $filteredEventIdsType = 'Google_Service_Dfareporting_DimensionValue';
protected $filteredEventIdsDataType = 'array';
public $kind;
public function setFilteredEventIds($filteredEventIds)
{
$this->filteredEventIds = $filteredEventIds;
}
public function getFilteredEventIds()
{
return $this->filteredEventIds;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,57 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DateRange extends Google_Model
{
public $endDate;
public $kind;
public $relativeDateRange;
public $startDate;
public function setEndDate($endDate)
{
$this->endDate = $endDate;
}
public function getEndDate()
{
return $this->endDate;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setRelativeDateRange($relativeDateRange)
{
$this->relativeDateRange = $relativeDateRange;
}
public function getRelativeDateRange()
{
return $this->relativeDateRange;
}
public function setStartDate($startDate)
{
$this->startDate = $startDate;
}
public function getStartDate()
{
return $this->startDate;
}
}

View File

@@ -0,0 +1,49 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DayPartTargeting extends Google_Collection
{
protected $collection_key = 'hoursOfDay';
public $daysOfWeek;
public $hoursOfDay;
public $userLocalTime;
public function setDaysOfWeek($daysOfWeek)
{
$this->daysOfWeek = $daysOfWeek;
}
public function getDaysOfWeek()
{
return $this->daysOfWeek;
}
public function setHoursOfDay($hoursOfDay)
{
$this->hoursOfDay = $hoursOfDay;
}
public function getHoursOfDay()
{
return $this->hoursOfDay;
}
public function setUserLocalTime($userLocalTime)
{
$this->userLocalTime = $userLocalTime;
}
public function getUserLocalTime()
{
return $this->userLocalTime;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DefaultClickThroughEventTagProperties extends Google_Model
{
public $defaultClickThroughEventTagId;
public $overrideInheritedEventTag;
public function setDefaultClickThroughEventTagId($defaultClickThroughEventTagId)
{
$this->defaultClickThroughEventTagId = $defaultClickThroughEventTagId;
}
public function getDefaultClickThroughEventTagId()
{
return $this->defaultClickThroughEventTagId;
}
public function setOverrideInheritedEventTag($overrideInheritedEventTag)
{
$this->overrideInheritedEventTag = $overrideInheritedEventTag;
}
public function getOverrideInheritedEventTag()
{
return $this->overrideInheritedEventTag;
}
}

View File

@@ -0,0 +1,58 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DeliverySchedule extends Google_Model
{
protected $frequencyCapType = 'Google_Service_Dfareporting_FrequencyCap';
protected $frequencyCapDataType = '';
public $hardCutoff;
public $impressionRatio;
public $priority;
public function setFrequencyCap(Google_Service_Dfareporting_FrequencyCap $frequencyCap)
{
$this->frequencyCap = $frequencyCap;
}
public function getFrequencyCap()
{
return $this->frequencyCap;
}
public function setHardCutoff($hardCutoff)
{
$this->hardCutoff = $hardCutoff;
}
public function getHardCutoff()
{
return $this->hardCutoff;
}
public function setImpressionRatio($impressionRatio)
{
$this->impressionRatio = $impressionRatio;
}
public function getImpressionRatio()
{
return $this->impressionRatio;
}
public function setPriority($priority)
{
$this->priority = $priority;
}
public function getPriority()
{
return $this->priority;
}
}

View File

@@ -0,0 +1,113 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DfareportingFile extends Google_Model
{
protected $dateRangeType = 'Google_Service_Dfareporting_DateRange';
protected $dateRangeDataType = '';
public $etag;
public $fileName;
public $format;
public $id;
public $kind;
public $lastModifiedTime;
public $reportId;
public $status;
protected $urlsType = 'Google_Service_Dfareporting_DfareportingFileUrls';
protected $urlsDataType = '';
public function setDateRange(Google_Service_Dfareporting_DateRange $dateRange)
{
$this->dateRange = $dateRange;
}
public function getDateRange()
{
return $this->dateRange;
}
public function setEtag($etag)
{
$this->etag = $etag;
}
public function getEtag()
{
return $this->etag;
}
public function setFileName($fileName)
{
$this->fileName = $fileName;
}
public function getFileName()
{
return $this->fileName;
}
public function setFormat($format)
{
$this->format = $format;
}
public function getFormat()
{
return $this->format;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setLastModifiedTime($lastModifiedTime)
{
$this->lastModifiedTime = $lastModifiedTime;
}
public function getLastModifiedTime()
{
return $this->lastModifiedTime;
}
public function setReportId($reportId)
{
$this->reportId = $reportId;
}
public function getReportId()
{
return $this->reportId;
}
public function setStatus($status)
{
$this->status = $status;
}
public function getStatus()
{
return $this->status;
}
public function setUrls(Google_Service_Dfareporting_DfareportingFileUrls $urls)
{
$this->urls = $urls;
}
public function getUrls()
{
return $this->urls;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DfareportingFileUrls extends Google_Model
{
public $apiUrl;
public $browserUrl;
public function setApiUrl($apiUrl)
{
$this->apiUrl = $apiUrl;
}
public function getApiUrl()
{
return $this->apiUrl;
}
public function setBrowserUrl($browserUrl)
{
$this->browserUrl = $browserUrl;
}
public function getBrowserUrl()
{
return $this->browserUrl;
}
}

View File

@@ -0,0 +1,70 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DfpSettings extends Google_Model
{
protected $internal_gapi_mappings = array(
"dfpNetworkCode" => "dfp_network_code",
"dfpNetworkName" => "dfp_network_name",
);
public $dfpNetworkCode;
public $dfpNetworkName;
public $programmaticPlacementAccepted;
public $pubPaidPlacementAccepted;
public $publisherPortalOnly;
public function setDfpNetworkCode($dfpNetworkCode)
{
$this->dfpNetworkCode = $dfpNetworkCode;
}
public function getDfpNetworkCode()
{
return $this->dfpNetworkCode;
}
public function setDfpNetworkName($dfpNetworkName)
{
$this->dfpNetworkName = $dfpNetworkName;
}
public function getDfpNetworkName()
{
return $this->dfpNetworkName;
}
public function setProgrammaticPlacementAccepted($programmaticPlacementAccepted)
{
$this->programmaticPlacementAccepted = $programmaticPlacementAccepted;
}
public function getProgrammaticPlacementAccepted()
{
return $this->programmaticPlacementAccepted;
}
public function setPubPaidPlacementAccepted($pubPaidPlacementAccepted)
{
$this->pubPaidPlacementAccepted = $pubPaidPlacementAccepted;
}
public function getPubPaidPlacementAccepted()
{
return $this->pubPaidPlacementAccepted;
}
public function setPublisherPortalOnly($publisherPortalOnly)
{
$this->publisherPortalOnly = $publisherPortalOnly;
}
public function getPublisherPortalOnly()
{
return $this->publisherPortalOnly;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_Dimension extends Google_Model
{
public $kind;
public $name;
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}

View File

@@ -0,0 +1,48 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DimensionFilter extends Google_Model
{
public $dimensionName;
public $kind;
public $value;
public function setDimensionName($dimensionName)
{
$this->dimensionName = $dimensionName;
}
public function getDimensionName()
{
return $this->dimensionName;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setValue($value)
{
$this->value = $value;
}
public function getValue()
{
return $this->value;
}
}

View File

@@ -0,0 +1,75 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DimensionValue extends Google_Model
{
public $dimensionName;
public $etag;
public $id;
public $kind;
public $matchType;
public $value;
public function setDimensionName($dimensionName)
{
$this->dimensionName = $dimensionName;
}
public function getDimensionName()
{
return $this->dimensionName;
}
public function setEtag($etag)
{
$this->etag = $etag;
}
public function getEtag()
{
return $this->etag;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setMatchType($matchType)
{
$this->matchType = $matchType;
}
public function getMatchType()
{
return $this->matchType;
}
public function setValue($value)
{
$this->value = $value;
}
public function getValue()
{
return $this->value;
}
}

View File

@@ -0,0 +1,59 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DimensionValueList extends Google_Collection
{
protected $collection_key = 'items';
public $etag;
protected $itemsType = 'Google_Service_Dfareporting_DimensionValue';
protected $itemsDataType = 'array';
public $kind;
public $nextPageToken;
public function setEtag($etag)
{
$this->etag = $etag;
}
public function getEtag()
{
return $this->etag;
}
public function setItems($items)
{
$this->items = $items;
}
public function getItems()
{
return $this->items;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,68 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DimensionValueRequest extends Google_Collection
{
protected $collection_key = 'filters';
public $dimensionName;
public $endDate;
protected $filtersType = 'Google_Service_Dfareporting_DimensionFilter';
protected $filtersDataType = 'array';
public $kind;
public $startDate;
public function setDimensionName($dimensionName)
{
$this->dimensionName = $dimensionName;
}
public function getDimensionName()
{
return $this->dimensionName;
}
public function setEndDate($endDate)
{
$this->endDate = $endDate;
}
public function getEndDate()
{
return $this->endDate;
}
public function setFilters($filters)
{
$this->filters = $filters;
}
public function getFilters()
{
return $this->filters;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setStartDate($startDate)
{
$this->startDate = $startDate;
}
public function getStartDate()
{
return $this->startDate;
}
}

View File

@@ -0,0 +1,151 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DirectorySite extends Google_Collection
{
protected $collection_key = 'interstitialTagFormats';
public $active;
protected $contactAssignmentsType = 'Google_Service_Dfareporting_DirectorySiteContactAssignment';
protected $contactAssignmentsDataType = 'array';
public $countryId;
public $currencyId;
public $description;
public $id;
protected $idDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $idDimensionValueDataType = '';
public $inpageTagFormats;
public $interstitialTagFormats;
public $kind;
public $name;
public $parentId;
protected $settingsType = 'Google_Service_Dfareporting_DirectorySiteSettings';
protected $settingsDataType = '';
public $url;
public function setActive($active)
{
$this->active = $active;
}
public function getActive()
{
return $this->active;
}
public function setContactAssignments($contactAssignments)
{
$this->contactAssignments = $contactAssignments;
}
public function getContactAssignments()
{
return $this->contactAssignments;
}
public function setCountryId($countryId)
{
$this->countryId = $countryId;
}
public function getCountryId()
{
return $this->countryId;
}
public function setCurrencyId($currencyId)
{
$this->currencyId = $currencyId;
}
public function getCurrencyId()
{
return $this->currencyId;
}
public function setDescription($description)
{
$this->description = $description;
}
public function getDescription()
{
return $this->description;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue)
{
$this->idDimensionValue = $idDimensionValue;
}
public function getIdDimensionValue()
{
return $this->idDimensionValue;
}
public function setInpageTagFormats($inpageTagFormats)
{
$this->inpageTagFormats = $inpageTagFormats;
}
public function getInpageTagFormats()
{
return $this->inpageTagFormats;
}
public function setInterstitialTagFormats($interstitialTagFormats)
{
$this->interstitialTagFormats = $interstitialTagFormats;
}
public function getInterstitialTagFormats()
{
return $this->interstitialTagFormats;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setParentId($parentId)
{
$this->parentId = $parentId;
}
public function getParentId()
{
return $this->parentId;
}
public function setSettings(Google_Service_Dfareporting_DirectorySiteSettings $settings)
{
$this->settings = $settings;
}
public function getSettings()
{
return $this->settings;
}
public function setUrl($url)
{
$this->url = $url;
}
public function getUrl()
{
return $this->url;
}
}

View File

@@ -0,0 +1,111 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DirectorySiteContact extends Google_Model
{
public $address;
public $email;
public $firstName;
public $id;
public $kind;
public $lastName;
public $phone;
public $role;
public $title;
public $type;
public function setAddress($address)
{
$this->address = $address;
}
public function getAddress()
{
return $this->address;
}
public function setEmail($email)
{
$this->email = $email;
}
public function getEmail()
{
return $this->email;
}
public function setFirstName($firstName)
{
$this->firstName = $firstName;
}
public function getFirstName()
{
return $this->firstName;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setLastName($lastName)
{
$this->lastName = $lastName;
}
public function getLastName()
{
return $this->lastName;
}
public function setPhone($phone)
{
$this->phone = $phone;
}
public function getPhone()
{
return $this->phone;
}
public function setRole($role)
{
$this->role = $role;
}
public function getRole()
{
return $this->role;
}
public function setTitle($title)
{
$this->title = $title;
}
public function getTitle()
{
return $this->title;
}
public function setType($type)
{
$this->type = $type;
}
public function getType()
{
return $this->type;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DirectorySiteContactAssignment extends Google_Model
{
public $contactId;
public $visibility;
public function setContactId($contactId)
{
$this->contactId = $contactId;
}
public function getContactId()
{
return $this->contactId;
}
public function setVisibility($visibility)
{
$this->visibility = $visibility;
}
public function getVisibility()
{
return $this->visibility;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DirectorySiteContactsListResponse extends Google_Collection
{
protected $collection_key = 'directorySiteContacts';
protected $directorySiteContactsType = 'Google_Service_Dfareporting_DirectorySiteContact';
protected $directorySiteContactsDataType = 'array';
public $kind;
public $nextPageToken;
public function setDirectorySiteContacts($directorySiteContacts)
{
$this->directorySiteContacts = $directorySiteContacts;
}
public function getDirectorySiteContacts()
{
return $this->directorySiteContacts;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,89 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DirectorySiteSettings extends Google_Model
{
protected $internal_gapi_mappings = array(
"dfpSettings" => "dfp_settings",
"instreamVideoPlacementAccepted" => "instream_video_placement_accepted",
);
public $activeViewOptOut;
protected $dfpSettingsType = 'Google_Service_Dfareporting_DfpSettings';
protected $dfpSettingsDataType = '';
public $instreamVideoPlacementAccepted;
public $interstitialPlacementAccepted;
public $nielsenOcrOptOut;
public $verificationTagOptOut;
public $videoActiveViewOptOut;
public function setActiveViewOptOut($activeViewOptOut)
{
$this->activeViewOptOut = $activeViewOptOut;
}
public function getActiveViewOptOut()
{
return $this->activeViewOptOut;
}
public function setDfpSettings(Google_Service_Dfareporting_DfpSettings $dfpSettings)
{
$this->dfpSettings = $dfpSettings;
}
public function getDfpSettings()
{
return $this->dfpSettings;
}
public function setInstreamVideoPlacementAccepted($instreamVideoPlacementAccepted)
{
$this->instreamVideoPlacementAccepted = $instreamVideoPlacementAccepted;
}
public function getInstreamVideoPlacementAccepted()
{
return $this->instreamVideoPlacementAccepted;
}
public function setInterstitialPlacementAccepted($interstitialPlacementAccepted)
{
$this->interstitialPlacementAccepted = $interstitialPlacementAccepted;
}
public function getInterstitialPlacementAccepted()
{
return $this->interstitialPlacementAccepted;
}
public function setNielsenOcrOptOut($nielsenOcrOptOut)
{
$this->nielsenOcrOptOut = $nielsenOcrOptOut;
}
public function getNielsenOcrOptOut()
{
return $this->nielsenOcrOptOut;
}
public function setVerificationTagOptOut($verificationTagOptOut)
{
$this->verificationTagOptOut = $verificationTagOptOut;
}
public function getVerificationTagOptOut()
{
return $this->verificationTagOptOut;
}
public function setVideoActiveViewOptOut($videoActiveViewOptOut)
{
$this->videoActiveViewOptOut = $videoActiveViewOptOut;
}
public function getVideoActiveViewOptOut()
{
return $this->videoActiveViewOptOut;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DirectorySitesListResponse extends Google_Collection
{
protected $collection_key = 'directorySites';
protected $directorySitesType = 'Google_Service_Dfareporting_DirectorySite';
protected $directorySitesDataType = 'array';
public $kind;
public $nextPageToken;
public function setDirectorySites($directorySites)
{
$this->directorySites = $directorySites;
}
public function getDirectorySites()
{
return $this->directorySites;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,57 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DynamicTargetingKey extends Google_Model
{
public $kind;
public $name;
public $objectId;
public $objectType;
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setObjectId($objectId)
{
$this->objectId = $objectId;
}
public function getObjectId()
{
return $this->objectId;
}
public function setObjectType($objectType)
{
$this->objectType = $objectType;
}
public function getObjectType()
{
return $this->objectType;
}
}

View File

@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_DynamicTargetingKeysListResponse extends Google_Collection
{
protected $collection_key = 'dynamicTargetingKeys';
protected $dynamicTargetingKeysType = 'Google_Service_Dfareporting_DynamicTargetingKey';
protected $dynamicTargetingKeysDataType = 'array';
public $kind;
public function setDynamicTargetingKeys($dynamicTargetingKeys)
{
$this->dynamicTargetingKeys = $dynamicTargetingKeys;
}
public function getDynamicTargetingKeys()
{
return $this->dynamicTargetingKeys;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,57 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_EncryptionInfo extends Google_Model
{
public $encryptionEntityId;
public $encryptionEntityType;
public $encryptionSource;
public $kind;
public function setEncryptionEntityId($encryptionEntityId)
{
$this->encryptionEntityId = $encryptionEntityId;
}
public function getEncryptionEntityId()
{
return $this->encryptionEntityId;
}
public function setEncryptionEntityType($encryptionEntityType)
{
$this->encryptionEntityType = $encryptionEntityType;
}
public function getEncryptionEntityType()
{
return $this->encryptionEntityType;
}
public function setEncryptionSource($encryptionSource)
{
$this->encryptionSource = $encryptionSource;
}
public function getEncryptionSource()
{
return $this->encryptionSource;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,186 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_EventTag extends Google_Collection
{
protected $collection_key = 'siteIds';
public $accountId;
public $advertiserId;
protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $advertiserIdDimensionValueDataType = '';
public $campaignId;
protected $campaignIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $campaignIdDimensionValueDataType = '';
public $enabledByDefault;
public $excludeFromAdxRequests;
public $id;
public $kind;
public $name;
public $siteFilterType;
public $siteIds;
public $sslCompliant;
public $status;
public $subaccountId;
public $type;
public $url;
public $urlEscapeLevels;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setAdvertiserId($advertiserId)
{
$this->advertiserId = $advertiserId;
}
public function getAdvertiserId()
{
return $this->advertiserId;
}
public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
{
$this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
}
public function getAdvertiserIdDimensionValue()
{
return $this->advertiserIdDimensionValue;
}
public function setCampaignId($campaignId)
{
$this->campaignId = $campaignId;
}
public function getCampaignId()
{
return $this->campaignId;
}
public function setCampaignIdDimensionValue(Google_Service_Dfareporting_DimensionValue $campaignIdDimensionValue)
{
$this->campaignIdDimensionValue = $campaignIdDimensionValue;
}
public function getCampaignIdDimensionValue()
{
return $this->campaignIdDimensionValue;
}
public function setEnabledByDefault($enabledByDefault)
{
$this->enabledByDefault = $enabledByDefault;
}
public function getEnabledByDefault()
{
return $this->enabledByDefault;
}
public function setExcludeFromAdxRequests($excludeFromAdxRequests)
{
$this->excludeFromAdxRequests = $excludeFromAdxRequests;
}
public function getExcludeFromAdxRequests()
{
return $this->excludeFromAdxRequests;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setSiteFilterType($siteFilterType)
{
$this->siteFilterType = $siteFilterType;
}
public function getSiteFilterType()
{
return $this->siteFilterType;
}
public function setSiteIds($siteIds)
{
$this->siteIds = $siteIds;
}
public function getSiteIds()
{
return $this->siteIds;
}
public function setSslCompliant($sslCompliant)
{
$this->sslCompliant = $sslCompliant;
}
public function getSslCompliant()
{
return $this->sslCompliant;
}
public function setStatus($status)
{
$this->status = $status;
}
public function getStatus()
{
return $this->status;
}
public function setSubaccountId($subaccountId)
{
$this->subaccountId = $subaccountId;
}
public function getSubaccountId()
{
return $this->subaccountId;
}
public function setType($type)
{
$this->type = $type;
}
public function getType()
{
return $this->type;
}
public function setUrl($url)
{
$this->url = $url;
}
public function getUrl()
{
return $this->url;
}
public function setUrlEscapeLevels($urlEscapeLevels)
{
$this->urlEscapeLevels = $urlEscapeLevels;
}
public function getUrlEscapeLevels()
{
return $this->urlEscapeLevels;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_EventTagOverride extends Google_Model
{
public $enabled;
public $id;
public function setEnabled($enabled)
{
$this->enabled = $enabled;
}
public function getEnabled()
{
return $this->enabled;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
}

View File

@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_EventTagsListResponse extends Google_Collection
{
protected $collection_key = 'eventTags';
protected $eventTagsType = 'Google_Service_Dfareporting_EventTag';
protected $eventTagsDataType = 'array';
public $kind;
public function setEventTags($eventTags)
{
$this->eventTags = $eventTags;
}
public function getEventTags()
{
return $this->eventTags;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,59 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_FileList extends Google_Collection
{
protected $collection_key = 'items';
public $etag;
protected $itemsType = 'Google_Service_Dfareporting_DfareportingFile';
protected $itemsDataType = 'array';
public $kind;
public $nextPageToken;
public function setEtag($etag)
{
$this->etag = $etag;
}
public function getEtag()
{
return $this->etag;
}
public function setItems($items)
{
$this->items = $items;
}
public function getItems()
{
return $this->items;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,57 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_Flight extends Google_Model
{
public $endDate;
public $rateOrCost;
public $startDate;
public $units;
public function setEndDate($endDate)
{
$this->endDate = $endDate;
}
public function getEndDate()
{
return $this->endDate;
}
public function setRateOrCost($rateOrCost)
{
$this->rateOrCost = $rateOrCost;
}
public function getRateOrCost()
{
return $this->rateOrCost;
}
public function setStartDate($startDate)
{
$this->startDate = $startDate;
}
public function getStartDate()
{
return $this->startDate;
}
public function setUnits($units)
{
$this->units = $units;
}
public function getUnits()
{
return $this->units;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_FloodlightActivitiesGenerateTagResponse extends Google_Model
{
public $floodlightActivityTag;
public $kind;
public function setFloodlightActivityTag($floodlightActivityTag)
{
$this->floodlightActivityTag = $floodlightActivityTag;
}
public function getFloodlightActivityTag()
{
return $this->floodlightActivityTag;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_FloodlightActivitiesListResponse extends Google_Collection
{
protected $collection_key = 'floodlightActivities';
protected $floodlightActivitiesType = 'Google_Service_Dfareporting_FloodlightActivity';
protected $floodlightActivitiesDataType = 'array';
public $kind;
public $nextPageToken;
public function setFloodlightActivities($floodlightActivities)
{
$this->floodlightActivities = $floodlightActivities;
}
public function getFloodlightActivities()
{
return $this->floodlightActivities;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,279 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_FloodlightActivity extends Google_Collection
{
protected $collection_key = 'userDefinedVariableTypes';
public $accountId;
public $advertiserId;
protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $advertiserIdDimensionValueDataType = '';
public $cacheBustingType;
public $countingMethod;
protected $defaultTagsType = 'Google_Service_Dfareporting_FloodlightActivityDynamicTag';
protected $defaultTagsDataType = 'array';
public $expectedUrl;
public $floodlightActivityGroupId;
public $floodlightActivityGroupName;
public $floodlightActivityGroupTagString;
public $floodlightActivityGroupType;
public $floodlightConfigurationId;
protected $floodlightConfigurationIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $floodlightConfigurationIdDimensionValueDataType = '';
public $hidden;
public $id;
protected $idDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $idDimensionValueDataType = '';
public $imageTagEnabled;
public $kind;
public $name;
public $notes;
protected $publisherTagsType = 'Google_Service_Dfareporting_FloodlightActivityPublisherDynamicTag';
protected $publisherTagsDataType = 'array';
public $secure;
public $sslCompliant;
public $sslRequired;
public $subaccountId;
public $tagFormat;
public $tagString;
public $userDefinedVariableTypes;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setAdvertiserId($advertiserId)
{
$this->advertiserId = $advertiserId;
}
public function getAdvertiserId()
{
return $this->advertiserId;
}
public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
{
$this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
}
public function getAdvertiserIdDimensionValue()
{
return $this->advertiserIdDimensionValue;
}
public function setCacheBustingType($cacheBustingType)
{
$this->cacheBustingType = $cacheBustingType;
}
public function getCacheBustingType()
{
return $this->cacheBustingType;
}
public function setCountingMethod($countingMethod)
{
$this->countingMethod = $countingMethod;
}
public function getCountingMethod()
{
return $this->countingMethod;
}
public function setDefaultTags($defaultTags)
{
$this->defaultTags = $defaultTags;
}
public function getDefaultTags()
{
return $this->defaultTags;
}
public function setExpectedUrl($expectedUrl)
{
$this->expectedUrl = $expectedUrl;
}
public function getExpectedUrl()
{
return $this->expectedUrl;
}
public function setFloodlightActivityGroupId($floodlightActivityGroupId)
{
$this->floodlightActivityGroupId = $floodlightActivityGroupId;
}
public function getFloodlightActivityGroupId()
{
return $this->floodlightActivityGroupId;
}
public function setFloodlightActivityGroupName($floodlightActivityGroupName)
{
$this->floodlightActivityGroupName = $floodlightActivityGroupName;
}
public function getFloodlightActivityGroupName()
{
return $this->floodlightActivityGroupName;
}
public function setFloodlightActivityGroupTagString($floodlightActivityGroupTagString)
{
$this->floodlightActivityGroupTagString = $floodlightActivityGroupTagString;
}
public function getFloodlightActivityGroupTagString()
{
return $this->floodlightActivityGroupTagString;
}
public function setFloodlightActivityGroupType($floodlightActivityGroupType)
{
$this->floodlightActivityGroupType = $floodlightActivityGroupType;
}
public function getFloodlightActivityGroupType()
{
return $this->floodlightActivityGroupType;
}
public function setFloodlightConfigurationId($floodlightConfigurationId)
{
$this->floodlightConfigurationId = $floodlightConfigurationId;
}
public function getFloodlightConfigurationId()
{
return $this->floodlightConfigurationId;
}
public function setFloodlightConfigurationIdDimensionValue(Google_Service_Dfareporting_DimensionValue $floodlightConfigurationIdDimensionValue)
{
$this->floodlightConfigurationIdDimensionValue = $floodlightConfigurationIdDimensionValue;
}
public function getFloodlightConfigurationIdDimensionValue()
{
return $this->floodlightConfigurationIdDimensionValue;
}
public function setHidden($hidden)
{
$this->hidden = $hidden;
}
public function getHidden()
{
return $this->hidden;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue)
{
$this->idDimensionValue = $idDimensionValue;
}
public function getIdDimensionValue()
{
return $this->idDimensionValue;
}
public function setImageTagEnabled($imageTagEnabled)
{
$this->imageTagEnabled = $imageTagEnabled;
}
public function getImageTagEnabled()
{
return $this->imageTagEnabled;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setNotes($notes)
{
$this->notes = $notes;
}
public function getNotes()
{
return $this->notes;
}
public function setPublisherTags($publisherTags)
{
$this->publisherTags = $publisherTags;
}
public function getPublisherTags()
{
return $this->publisherTags;
}
public function setSecure($secure)
{
$this->secure = $secure;
}
public function getSecure()
{
return $this->secure;
}
public function setSslCompliant($sslCompliant)
{
$this->sslCompliant = $sslCompliant;
}
public function getSslCompliant()
{
return $this->sslCompliant;
}
public function setSslRequired($sslRequired)
{
$this->sslRequired = $sslRequired;
}
public function getSslRequired()
{
return $this->sslRequired;
}
public function setSubaccountId($subaccountId)
{
$this->subaccountId = $subaccountId;
}
public function getSubaccountId()
{
return $this->subaccountId;
}
public function setTagFormat($tagFormat)
{
$this->tagFormat = $tagFormat;
}
public function getTagFormat()
{
return $this->tagFormat;
}
public function setTagString($tagString)
{
$this->tagString = $tagString;
}
public function getTagString()
{
return $this->tagString;
}
public function setUserDefinedVariableTypes($userDefinedVariableTypes)
{
$this->userDefinedVariableTypes = $userDefinedVariableTypes;
}
public function getUserDefinedVariableTypes()
{
return $this->userDefinedVariableTypes;
}
}

View File

@@ -0,0 +1,48 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_FloodlightActivityDynamicTag extends Google_Model
{
public $id;
public $name;
public $tag;
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setTag($tag)
{
$this->tag = $tag;
}
public function getTag()
{
return $this->tag;
}
}

View File

@@ -0,0 +1,132 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_FloodlightActivityGroup extends Google_Model
{
public $accountId;
public $advertiserId;
protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $advertiserIdDimensionValueDataType = '';
public $floodlightConfigurationId;
protected $floodlightConfigurationIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $floodlightConfigurationIdDimensionValueDataType = '';
public $id;
protected $idDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
protected $idDimensionValueDataType = '';
public $kind;
public $name;
public $subaccountId;
public $tagString;
public $type;
public function setAccountId($accountId)
{
$this->accountId = $accountId;
}
public function getAccountId()
{
return $this->accountId;
}
public function setAdvertiserId($advertiserId)
{
$this->advertiserId = $advertiserId;
}
public function getAdvertiserId()
{
return $this->advertiserId;
}
public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
{
$this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
}
public function getAdvertiserIdDimensionValue()
{
return $this->advertiserIdDimensionValue;
}
public function setFloodlightConfigurationId($floodlightConfigurationId)
{
$this->floodlightConfigurationId = $floodlightConfigurationId;
}
public function getFloodlightConfigurationId()
{
return $this->floodlightConfigurationId;
}
public function setFloodlightConfigurationIdDimensionValue(Google_Service_Dfareporting_DimensionValue $floodlightConfigurationIdDimensionValue)
{
$this->floodlightConfigurationIdDimensionValue = $floodlightConfigurationIdDimensionValue;
}
public function getFloodlightConfigurationIdDimensionValue()
{
return $this->floodlightConfigurationIdDimensionValue;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue)
{
$this->idDimensionValue = $idDimensionValue;
}
public function getIdDimensionValue()
{
return $this->idDimensionValue;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setSubaccountId($subaccountId)
{
$this->subaccountId = $subaccountId;
}
public function getSubaccountId()
{
return $this->subaccountId;
}
public function setTagString($tagString)
{
$this->tagString = $tagString;
}
public function getTagString()
{
return $this->tagString;
}
public function setType($type)
{
$this->type = $type;
}
public function getType()
{
return $this->type;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_Dfareporting_FloodlightActivityGroupsListResponse extends Google_Collection
{
protected $collection_key = 'floodlightActivityGroups';
protected $floodlightActivityGroupsType = 'Google_Service_Dfareporting_FloodlightActivityGroup';
protected $floodlightActivityGroupsDataType = 'array';
public $kind;
public $nextPageToken;
public function setFloodlightActivityGroups($floodlightActivityGroups)
{
$this->floodlightActivityGroups = $floodlightActivityGroups;
}
public function getFloodlightActivityGroups()
{
return $this->floodlightActivityGroups;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

Some files were not shown because too many files have changed in this diff Show More