summaryrefslogtreecommitdiff
path: root/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/DoubleClickBidManager.php
diff options
context:
space:
mode:
Diffstat (limited to 'Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/DoubleClickBidManager.php')
-rw-r--r--Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/DoubleClickBidManager.php1066
1 files changed, 1066 insertions, 0 deletions
diff --git a/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/DoubleClickBidManager.php b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/DoubleClickBidManager.php
new file mode 100644
index 0000000..c11328a
--- /dev/null
+++ b/Postman/Postman-Mail/google-api-php-client-1.1.2/src/Google/Service/DoubleClickBidManager.php
@@ -0,0 +1,1066 @@
+<?php
+/*
+ * Copyright 2010 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.
+ */
+
+/**
+ * Service definition for DoubleClickBidManager (v1).
+ *
+ * <p>
+ * API for viewing and managing your reports in DoubleClick Bid Manager.</p>
+ *
+ * <p>
+ * For more information about this service, see the API
+ * <a href="https://developers.google.com/bid-manager/" target="_blank">Documentation</a>
+ * </p>
+ *
+ * @author Google, Inc.
+ */
+class Postman_Google_Service_DoubleClickBidManager extends Postman_Google_Service
+{
+
+
+ public $lineitems;
+ public $queries;
+ public $reports;
+
+
+ /**
+ * Constructs the internal representation of the DoubleClickBidManager
+ * service.
+ *
+ * @param Postman_Google_Client $client
+ */
+ public function __construct(Postman_Google_Client $client)
+ {
+ parent::__construct($client);
+ $this->servicePath = 'doubleclickbidmanager/v1/';
+ $this->version = 'v1';
+ $this->serviceName = 'doubleclickbidmanager';
+
+ $this->lineitems = new Postman_Google_Service_DoubleClickBidManager_Lineitems_Resource(
+ $this,
+ $this->serviceName,
+ 'lineitems',
+ array(
+ 'methods' => array(
+ 'downloadlineitems' => array(
+ 'path' => 'lineitems/downloadlineitems',
+ 'httpMethod' => 'POST',
+ 'parameters' => array(),
+ ),'uploadlineitems' => array(
+ 'path' => 'lineitems/uploadlineitems',
+ 'httpMethod' => 'POST',
+ 'parameters' => array(),
+ ),
+ )
+ )
+ );
+ $this->queries = new Postman_Google_Service_DoubleClickBidManager_Queries_Resource(
+ $this,
+ $this->serviceName,
+ 'queries',
+ array(
+ 'methods' => array(
+ 'createquery' => array(
+ 'path' => 'query',
+ 'httpMethod' => 'POST',
+ 'parameters' => array(),
+ ),'deletequery' => array(
+ 'path' => 'query/{queryId}',
+ 'httpMethod' => 'DELETE',
+ 'parameters' => array(
+ 'queryId' => array(
+ 'location' => 'path',
+ 'type' => 'string',
+ 'required' => true,
+ ),
+ ),
+ ),'getquery' => array(
+ 'path' => 'query/{queryId}',
+ 'httpMethod' => 'GET',
+ 'parameters' => array(
+ 'queryId' => array(
+ 'location' => 'path',
+ 'type' => 'string',
+ 'required' => true,
+ ),
+ ),
+ ),'listqueries' => array(
+ 'path' => 'queries',
+ 'httpMethod' => 'GET',
+ 'parameters' => array(),
+ ),'runquery' => array(
+ 'path' => 'query/{queryId}',
+ 'httpMethod' => 'POST',
+ 'parameters' => array(
+ 'queryId' => array(
+ 'location' => 'path',
+ 'type' => 'string',
+ 'required' => true,
+ ),
+ ),
+ ),
+ )
+ )
+ );
+ $this->reports = new Postman_Google_Service_DoubleClickBidManager_Reports_Resource(
+ $this,
+ $this->serviceName,
+ 'reports',
+ array(
+ 'methods' => array(
+ 'listreports' => array(
+ 'path' => 'queries/{queryId}/reports',
+ 'httpMethod' => 'GET',
+ 'parameters' => array(
+ 'queryId' => array(
+ 'location' => 'path',
+ 'type' => 'string',
+ 'required' => true,
+ ),
+ ),
+ ),
+ )
+ )
+ );
+ }
+}
+
+
+/**
+ * The "lineitems" collection of methods.
+ * Typical usage is:
+ * <code>
+ * $doubleclickbidmanagerService = new Postman_Google_Service_DoubleClickBidManager(...);
+ * $lineitems = $doubleclickbidmanagerService->lineitems;
+ * </code>
+ */
+class Postman_Google_Service_DoubleClickBidManager_Lineitems_Resource extends Postman_Google_Service_Resource
+{
+
+ /**
+ * Retrieves line items in CSV format. (lineitems.downloadlineitems)
+ *
+ * @param Postman_Google_DownloadLineItemsRequest $postBody
+ * @param array $optParams Optional parameters.
+ * @return Postman_Google_Service_DoubleClickBidManager_DownloadLineItemsResponse
+ */
+ public function downloadlineitems(Postman_Google_Service_DoubleClickBidManager_DownloadLineItemsRequest $postBody, $optParams = array())
+ {
+ $params = array('postBody' => $postBody);
+ $params = array_merge($params, $optParams);
+ return $this->call('downloadlineitems', array($params), "Postman_Google_Service_DoubleClickBidManager_DownloadLineItemsResponse");
+ }
+
+ /**
+ * Uploads line items in CSV format. (lineitems.uploadlineitems)
+ *
+ * @param Postman_Google_UploadLineItemsRequest $postBody
+ * @param array $optParams Optional parameters.
+ * @return Postman_Google_Service_DoubleClickBidManager_UploadLineItemsResponse
+ */
+ public function uploadlineitems(Postman_Google_Service_DoubleClickBidManager_UploadLineItemsRequest $postBody, $optParams = array())
+ {
+ $params = array('postBody' => $postBody);
+ $params = array_merge($params, $optParams);
+ return $this->call('uploadlineitems', array($params), "Postman_Google_Service_DoubleClickBidManager_UploadLineItemsResponse");
+ }
+}
+
+/**
+ * The "queries" collection of methods.
+ * Typical usage is:
+ * <code>
+ * $doubleclickbidmanagerService = new Postman_Google_Service_DoubleClickBidManager(...);
+ * $queries = $doubleclickbidmanagerService->queries;
+ * </code>
+ */
+class Postman_Google_Service_DoubleClickBidManager_Queries_Resource extends Postman_Google_Service_Resource
+{
+
+ /**
+ * Creates a query. (queries.createquery)
+ *
+ * @param Postman_Google_Query $postBody
+ * @param array $optParams Optional parameters.
+ * @return Postman_Google_Service_DoubleClickBidManager_Query
+ */
+ public function createquery(Postman_Google_Service_DoubleClickBidManager_Query $postBody, $optParams = array())
+ {
+ $params = array('postBody' => $postBody);
+ $params = array_merge($params, $optParams);
+ return $this->call('createquery', array($params), "Postman_Google_Service_DoubleClickBidManager_Query");
+ }
+
+ /**
+ * Deletes a stored query as well as the associated stored reports.
+ * (queries.deletequery)
+ *
+ * @param string $queryId Query ID to delete.
+ * @param array $optParams Optional parameters.
+ */
+ public function deletequery($queryId, $optParams = array())
+ {
+ $params = array('queryId' => $queryId);
+ $params = array_merge($params, $optParams);
+ return $this->call('deletequery', array($params));
+ }
+
+ /**
+ * Retrieves a stored query. (queries.getquery)
+ *
+ * @param string $queryId Query ID to retrieve.
+ * @param array $optParams Optional parameters.
+ * @return Postman_Google_Service_DoubleClickBidManager_Query
+ */
+ public function getquery($queryId, $optParams = array())
+ {
+ $params = array('queryId' => $queryId);
+ $params = array_merge($params, $optParams);
+ return $this->call('getquery', array($params), "Postman_Google_Service_DoubleClickBidManager_Query");
+ }
+
+ /**
+ * Retrieves stored queries. (queries.listqueries)
+ *
+ * @param array $optParams Optional parameters.
+ * @return Postman_Google_Service_DoubleClickBidManager_ListQueriesResponse
+ */
+ public function listqueries($optParams = array())
+ {
+ $params = array();
+ $params = array_merge($params, $optParams);
+ return $this->call('listqueries', array($params), "Postman_Google_Service_DoubleClickBidManager_ListQueriesResponse");
+ }
+
+ /**
+ * Runs a stored query to generate a report. (queries.runquery)
+ *
+ * @param string $queryId Query ID to run.
+ * @param Postman_Google_RunQueryRequest $postBody
+ * @param array $optParams Optional parameters.
+ */
+ public function runquery($queryId, Postman_Google_Service_DoubleClickBidManager_RunQueryRequest $postBody, $optParams = array())
+ {
+ $params = array('queryId' => $queryId, 'postBody' => $postBody);
+ $params = array_merge($params, $optParams);
+ return $this->call('runquery', array($params));
+ }
+}
+
+/**
+ * The "reports" collection of methods.
+ * Typical usage is:
+ * <code>
+ * $doubleclickbidmanagerService = new Postman_Google_Service_DoubleClickBidManager(...);
+ * $reports = $doubleclickbidmanagerService->reports;
+ * </code>
+ */
+class Postman_Google_Service_DoubleClickBidManager_Reports_Resource extends Postman_Google_Service_Resource
+{
+
+ /**
+ * Retrieves stored reports. (reports.listreports)
+ *
+ * @param string $queryId Query ID with which the reports are associated.
+ * @param array $optParams Optional parameters.
+ * @return Postman_Google_Service_DoubleClickBidManager_ListReportsResponse
+ */
+ public function listreports($queryId, $optParams = array())
+ {
+ $params = array('queryId' => $queryId);
+ $params = array_merge($params, $optParams);
+ return $this->call('listreports', array($params), "Postman_Google_Service_DoubleClickBidManager_ListReportsResponse");
+ }
+}
+
+
+
+
+class Postman_Google_Service_DoubleClickBidManager_DownloadLineItemsRequest extends Postman_Google_Collection
+{
+ protected $collection_key = 'filterIds';
+ protected $internal_gapi_mappings = array(
+ );
+ public $filterIds;
+ public $filterType;
+ public $format;
+
+
+ public function setFilterIds($filterIds)
+ {
+ $this->filterIds = $filterIds;
+ }
+ public function getFilterIds()
+ {
+ return $this->filterIds;
+ }
+ public function setFilterType($filterType)
+ {
+ $this->filterType = $filterType;
+ }
+ public function getFilterType()
+ {
+ return $this->filterType;
+ }
+ public function setFormat($format)
+ {
+ $this->format = $format;
+ }
+ public function getFormat()
+ {
+ return $this->format;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_DownloadLineItemsResponse extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ public $lineItems;
+
+
+ public function setLineItems($lineItems)
+ {
+ $this->lineItems = $lineItems;
+ }
+ public function getLineItems()
+ {
+ return $this->lineItems;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_FilterPair extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ public $type;
+ public $value;
+
+
+ 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;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_ListQueriesResponse extends Postman_Google_Collection
+{
+ protected $collection_key = 'queries';
+ protected $internal_gapi_mappings = array(
+ );
+ public $kind;
+ protected $queriesType = 'Postman_Google_Service_DoubleClickBidManager_Query';
+ protected $queriesDataType = 'array';
+
+
+ public function setKind($kind)
+ {
+ $this->kind = $kind;
+ }
+ public function getKind()
+ {
+ return $this->kind;
+ }
+ public function setQueries($queries)
+ {
+ $this->queries = $queries;
+ }
+ public function getQueries()
+ {
+ return $this->queries;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_ListReportsResponse extends Postman_Google_Collection
+{
+ protected $collection_key = 'reports';
+ protected $internal_gapi_mappings = array(
+ );
+ public $kind;
+ protected $reportsType = 'Postman_Google_Service_DoubleClickBidManager_Report';
+ protected $reportsDataType = 'array';
+
+
+ public function setKind($kind)
+ {
+ $this->kind = $kind;
+ }
+ public function getKind()
+ {
+ return $this->kind;
+ }
+ public function setReports($reports)
+ {
+ $this->reports = $reports;
+ }
+ public function getReports()
+ {
+ return $this->reports;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_Parameters extends Postman_Google_Collection
+{
+ protected $collection_key = 'metrics';
+ protected $internal_gapi_mappings = array(
+ );
+ protected $filtersType = 'Postman_Google_Service_DoubleClickBidManager_FilterPair';
+ protected $filtersDataType = 'array';
+ public $groupBys;
+ public $includeInviteData;
+ public $metrics;
+ public $type;
+
+
+ public function setFilters($filters)
+ {
+ $this->filters = $filters;
+ }
+ public function getFilters()
+ {
+ return $this->filters;
+ }
+ public function setGroupBys($groupBys)
+ {
+ $this->groupBys = $groupBys;
+ }
+ public function getGroupBys()
+ {
+ return $this->groupBys;
+ }
+ public function setIncludeInviteData($includeInviteData)
+ {
+ $this->includeInviteData = $includeInviteData;
+ }
+ public function getIncludeInviteData()
+ {
+ return $this->includeInviteData;
+ }
+ public function setMetrics($metrics)
+ {
+ $this->metrics = $metrics;
+ }
+ public function getMetrics()
+ {
+ return $this->metrics;
+ }
+ public function setType($type)
+ {
+ $this->type = $type;
+ }
+ public function getType()
+ {
+ return $this->type;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_Query extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ public $kind;
+ protected $metadataType = 'Postman_Google_Service_DoubleClickBidManager_QueryMetadata';
+ protected $metadataDataType = '';
+ protected $paramsType = 'Postman_Google_Service_DoubleClickBidManager_Parameters';
+ protected $paramsDataType = '';
+ public $queryId;
+ public $reportDataEndTimeMs;
+ public $reportDataStartTimeMs;
+ protected $scheduleType = 'Postman_Google_Service_DoubleClickBidManager_QuerySchedule';
+ protected $scheduleDataType = '';
+ public $timezoneCode;
+
+
+ public function setKind($kind)
+ {
+ $this->kind = $kind;
+ }
+ public function getKind()
+ {
+ return $this->kind;
+ }
+ public function setMetadata(Postman_Google_Service_DoubleClickBidManager_QueryMetadata $metadata)
+ {
+ $this->metadata = $metadata;
+ }
+ public function getMetadata()
+ {
+ return $this->metadata;
+ }
+ public function setParams(Postman_Google_Service_DoubleClickBidManager_Parameters $params)
+ {
+ $this->params = $params;
+ }
+ public function getParams()
+ {
+ return $this->params;
+ }
+ public function setQueryId($queryId)
+ {
+ $this->queryId = $queryId;
+ }
+ public function getQueryId()
+ {
+ return $this->queryId;
+ }
+ public function setReportDataEndTimeMs($reportDataEndTimeMs)
+ {
+ $this->reportDataEndTimeMs = $reportDataEndTimeMs;
+ }
+ public function getReportDataEndTimeMs()
+ {
+ return $this->reportDataEndTimeMs;
+ }
+ public function setReportDataStartTimeMs($reportDataStartTimeMs)
+ {
+ $this->reportDataStartTimeMs = $reportDataStartTimeMs;
+ }
+ public function getReportDataStartTimeMs()
+ {
+ return $this->reportDataStartTimeMs;
+ }
+ public function setSchedule(Postman_Google_Service_DoubleClickBidManager_QuerySchedule $schedule)
+ {
+ $this->schedule = $schedule;
+ }
+ public function getSchedule()
+ {
+ return $this->schedule;
+ }
+ public function setTimezoneCode($timezoneCode)
+ {
+ $this->timezoneCode = $timezoneCode;
+ }
+ public function getTimezoneCode()
+ {
+ return $this->timezoneCode;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_QueryMetadata extends Postman_Google_Collection
+{
+ protected $collection_key = 'shareEmailAddress';
+ protected $internal_gapi_mappings = array(
+ );
+ public $dataRange;
+ public $format;
+ public $googleCloudStoragePathForLatestReport;
+ public $googleDrivePathForLatestReport;
+ public $latestReportRunTimeMs;
+ public $reportCount;
+ public $running;
+ public $sendNotification;
+ public $shareEmailAddress;
+ public $title;
+
+
+ public function setDataRange($dataRange)
+ {
+ $this->dataRange = $dataRange;
+ }
+ public function getDataRange()
+ {
+ return $this->dataRange;
+ }
+ public function setFormat($format)
+ {
+ $this->format = $format;
+ }
+ public function getFormat()
+ {
+ return $this->format;
+ }
+ public function setGoogleCloudStoragePathForLatestReport($googleCloudStoragePathForLatestReport)
+ {
+ $this->googleCloudStoragePathForLatestReport = $googleCloudStoragePathForLatestReport;
+ }
+ public function getGoogleCloudStoragePathForLatestReport()
+ {
+ return $this->googleCloudStoragePathForLatestReport;
+ }
+ public function setGoogleDrivePathForLatestReport($googleDrivePathForLatestReport)
+ {
+ $this->googleDrivePathForLatestReport = $googleDrivePathForLatestReport;
+ }
+ public function getGoogleDrivePathForLatestReport()
+ {
+ return $this->googleDrivePathForLatestReport;
+ }
+ public function setLatestReportRunTimeMs($latestReportRunTimeMs)
+ {
+ $this->latestReportRunTimeMs = $latestReportRunTimeMs;
+ }
+ public function getLatestReportRunTimeMs()
+ {
+ return $this->latestReportRunTimeMs;
+ }
+ public function setReportCount($reportCount)
+ {
+ $this->reportCount = $reportCount;
+ }
+ public function getReportCount()
+ {
+ return $this->reportCount;
+ }
+ public function setRunning($running)
+ {
+ $this->running = $running;
+ }
+ public function getRunning()
+ {
+ return $this->running;
+ }
+ public function setSendNotification($sendNotification)
+ {
+ $this->sendNotification = $sendNotification;
+ }
+ public function getSendNotification()
+ {
+ return $this->sendNotification;
+ }
+ public function setShareEmailAddress($shareEmailAddress)
+ {
+ $this->shareEmailAddress = $shareEmailAddress;
+ }
+ public function getShareEmailAddress()
+ {
+ return $this->shareEmailAddress;
+ }
+ public function setTitle($title)
+ {
+ $this->title = $title;
+ }
+ public function getTitle()
+ {
+ return $this->title;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_QuerySchedule extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ public $endTimeMs;
+ public $frequency;
+ public $nextRunMinuteOfDay;
+ public $nextRunTimezoneCode;
+
+
+ public function setEndTimeMs($endTimeMs)
+ {
+ $this->endTimeMs = $endTimeMs;
+ }
+ public function getEndTimeMs()
+ {
+ return $this->endTimeMs;
+ }
+ public function setFrequency($frequency)
+ {
+ $this->frequency = $frequency;
+ }
+ public function getFrequency()
+ {
+ return $this->frequency;
+ }
+ public function setNextRunMinuteOfDay($nextRunMinuteOfDay)
+ {
+ $this->nextRunMinuteOfDay = $nextRunMinuteOfDay;
+ }
+ public function getNextRunMinuteOfDay()
+ {
+ return $this->nextRunMinuteOfDay;
+ }
+ public function setNextRunTimezoneCode($nextRunTimezoneCode)
+ {
+ $this->nextRunTimezoneCode = $nextRunTimezoneCode;
+ }
+ public function getNextRunTimezoneCode()
+ {
+ return $this->nextRunTimezoneCode;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_Report extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ protected $keyType = 'Postman_Google_Service_DoubleClickBidManager_ReportKey';
+ protected $keyDataType = '';
+ protected $metadataType = 'Postman_Google_Service_DoubleClickBidManager_ReportMetadata';
+ protected $metadataDataType = '';
+ protected $paramsType = 'Postman_Google_Service_DoubleClickBidManager_Parameters';
+ protected $paramsDataType = '';
+
+
+ public function setKey(Postman_Google_Service_DoubleClickBidManager_ReportKey $key)
+ {
+ $this->key = $key;
+ }
+ public function getKey()
+ {
+ return $this->key;
+ }
+ public function setMetadata(Postman_Google_Service_DoubleClickBidManager_ReportMetadata $metadata)
+ {
+ $this->metadata = $metadata;
+ }
+ public function getMetadata()
+ {
+ return $this->metadata;
+ }
+ public function setParams(Postman_Google_Service_DoubleClickBidManager_Parameters $params)
+ {
+ $this->params = $params;
+ }
+ public function getParams()
+ {
+ return $this->params;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_ReportFailure extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ public $errorCode;
+
+
+ public function setErrorCode($errorCode)
+ {
+ $this->errorCode = $errorCode;
+ }
+ public function getErrorCode()
+ {
+ return $this->errorCode;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_ReportKey extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ public $queryId;
+ public $reportId;
+
+
+ public function setQueryId($queryId)
+ {
+ $this->queryId = $queryId;
+ }
+ public function getQueryId()
+ {
+ return $this->queryId;
+ }
+ public function setReportId($reportId)
+ {
+ $this->reportId = $reportId;
+ }
+ public function getReportId()
+ {
+ return $this->reportId;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_ReportMetadata extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ public $googleCloudStoragePath;
+ public $reportDataEndTimeMs;
+ public $reportDataStartTimeMs;
+ protected $statusType = 'Postman_Google_Service_DoubleClickBidManager_ReportStatus';
+ protected $statusDataType = '';
+
+
+ public function setGoogleCloudStoragePath($googleCloudStoragePath)
+ {
+ $this->googleCloudStoragePath = $googleCloudStoragePath;
+ }
+ public function getGoogleCloudStoragePath()
+ {
+ return $this->googleCloudStoragePath;
+ }
+ public function setReportDataEndTimeMs($reportDataEndTimeMs)
+ {
+ $this->reportDataEndTimeMs = $reportDataEndTimeMs;
+ }
+ public function getReportDataEndTimeMs()
+ {
+ return $this->reportDataEndTimeMs;
+ }
+ public function setReportDataStartTimeMs($reportDataStartTimeMs)
+ {
+ $this->reportDataStartTimeMs = $reportDataStartTimeMs;
+ }
+ public function getReportDataStartTimeMs()
+ {
+ return $this->reportDataStartTimeMs;
+ }
+ public function setStatus(Postman_Google_Service_DoubleClickBidManager_ReportStatus $status)
+ {
+ $this->status = $status;
+ }
+ public function getStatus()
+ {
+ return $this->status;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_ReportStatus extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ protected $failureType = 'Postman_Google_Service_DoubleClickBidManager_ReportFailure';
+ protected $failureDataType = '';
+ public $finishTimeMs;
+ public $format;
+ public $state;
+
+
+ public function setFailure(Postman_Google_Service_DoubleClickBidManager_ReportFailure $failure)
+ {
+ $this->failure = $failure;
+ }
+ public function getFailure()
+ {
+ return $this->failure;
+ }
+ public function setFinishTimeMs($finishTimeMs)
+ {
+ $this->finishTimeMs = $finishTimeMs;
+ }
+ public function getFinishTimeMs()
+ {
+ return $this->finishTimeMs;
+ }
+ public function setFormat($format)
+ {
+ $this->format = $format;
+ }
+ public function getFormat()
+ {
+ return $this->format;
+ }
+ public function setState($state)
+ {
+ $this->state = $state;
+ }
+ public function getState()
+ {
+ return $this->state;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_RowStatus extends Postman_Google_Collection
+{
+ protected $collection_key = 'errors';
+ protected $internal_gapi_mappings = array(
+ );
+ public $changed;
+ public $entityId;
+ public $entityName;
+ public $errors;
+ public $persisted;
+ public $rowNumber;
+
+
+ public function setChanged($changed)
+ {
+ $this->changed = $changed;
+ }
+ public function getChanged()
+ {
+ return $this->changed;
+ }
+ public function setEntityId($entityId)
+ {
+ $this->entityId = $entityId;
+ }
+ public function getEntityId()
+ {
+ return $this->entityId;
+ }
+ public function setEntityName($entityName)
+ {
+ $this->entityName = $entityName;
+ }
+ public function getEntityName()
+ {
+ return $this->entityName;
+ }
+ public function setErrors($errors)
+ {
+ $this->errors = $errors;
+ }
+ public function getErrors()
+ {
+ return $this->errors;
+ }
+ public function setPersisted($persisted)
+ {
+ $this->persisted = $persisted;
+ }
+ public function getPersisted()
+ {
+ return $this->persisted;
+ }
+ public function setRowNumber($rowNumber)
+ {
+ $this->rowNumber = $rowNumber;
+ }
+ public function getRowNumber()
+ {
+ return $this->rowNumber;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_RunQueryRequest extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ public $dataRange;
+ public $reportDataEndTimeMs;
+ public $reportDataStartTimeMs;
+ public $timezoneCode;
+
+
+ public function setDataRange($dataRange)
+ {
+ $this->dataRange = $dataRange;
+ }
+ public function getDataRange()
+ {
+ return $this->dataRange;
+ }
+ public function setReportDataEndTimeMs($reportDataEndTimeMs)
+ {
+ $this->reportDataEndTimeMs = $reportDataEndTimeMs;
+ }
+ public function getReportDataEndTimeMs()
+ {
+ return $this->reportDataEndTimeMs;
+ }
+ public function setReportDataStartTimeMs($reportDataStartTimeMs)
+ {
+ $this->reportDataStartTimeMs = $reportDataStartTimeMs;
+ }
+ public function getReportDataStartTimeMs()
+ {
+ return $this->reportDataStartTimeMs;
+ }
+ public function setTimezoneCode($timezoneCode)
+ {
+ $this->timezoneCode = $timezoneCode;
+ }
+ public function getTimezoneCode()
+ {
+ return $this->timezoneCode;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_UploadLineItemsRequest extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ public $dryRun;
+ public $format;
+ public $lineItems;
+
+
+ public function setDryRun($dryRun)
+ {
+ $this->dryRun = $dryRun;
+ }
+ public function getDryRun()
+ {
+ return $this->dryRun;
+ }
+ public function setFormat($format)
+ {
+ $this->format = $format;
+ }
+ public function getFormat()
+ {
+ return $this->format;
+ }
+ public function setLineItems($lineItems)
+ {
+ $this->lineItems = $lineItems;
+ }
+ public function getLineItems()
+ {
+ return $this->lineItems;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_UploadLineItemsResponse extends Postman_Google_Model
+{
+ protected $internal_gapi_mappings = array(
+ );
+ protected $uploadStatusType = 'Postman_Google_Service_DoubleClickBidManager_UploadStatus';
+ protected $uploadStatusDataType = '';
+
+
+ public function setUploadStatus(Postman_Google_Service_DoubleClickBidManager_UploadStatus $uploadStatus)
+ {
+ $this->uploadStatus = $uploadStatus;
+ }
+ public function getUploadStatus()
+ {
+ return $this->uploadStatus;
+ }
+}
+
+class Postman_Google_Service_DoubleClickBidManager_UploadStatus extends Postman_Google_Collection
+{
+ protected $collection_key = 'rowStatus';
+ protected $internal_gapi_mappings = array(
+ );
+ public $errors;
+ protected $rowStatusType = 'Postman_Google_Service_DoubleClickBidManager_RowStatus';
+ protected $rowStatusDataType = 'array';
+
+
+ public function setErrors($errors)
+ {
+ $this->errors = $errors;
+ }
+ public function getErrors()
+ {
+ return $this->errors;
+ }
+ public function setRowStatus($rowStatus)
+ {
+ $this->rowStatus = $rowStatus;
+ }
+ public function getRowStatus()
+ {
+ return $this->rowStatus;
+ }
+}