Documentation

Google_Service_DisplayVideo_Resource_AdvertisersCreatives extends Google_Service_Resource
in package

The "creatives" collection of methods.

Typical usage is: $displayvideoService = new Google_Service_DisplayVideo(...); $creatives = $displayvideoService->creatives;

Table of Contents

$client  : Google_Client
$methods  : array<string|int, mixed>
$resourceName  : string
$rootUrl  : string
$serviceName  : string
$servicePath  : string
$stackParameters  : mixed
__construct()  : mixed
call()  : Google_Http_Request|expectedClass
TODO: This function needs simplifying.
create()  : Google_Service_DisplayVideo_Creative
Creates a new creative. Returns the newly created creative if successful.
createRequestUri()  : string
Parse/expand request parameters and create a fully qualified request uri.
delete()  : Google_Service_DisplayVideo_DisplayvideoEmpty
Deletes a creative. Returns error code `NOT_FOUND` if the creative does not exist. The creative should be archived first, i.e. set entity_status to `ENTITY_STATUS_ARCHIVED`, before it can be deleted. (creatives.delete)
get()  : Google_Service_DisplayVideo_Creative
Gets a creative. (creatives.get)
listAdvertisersCreatives()  : Google_Service_DisplayVideo_ListCreativesResponse
Lists creatives in an advertiser. The order is defined by the order_by parameter. If a filter by entity_status is not specified, creatives with `ENTITY_STATUS_ARCHIVED` will not be included in the results.
patch()  : Google_Service_DisplayVideo_Creative
Updates an existing creative. Returns the updated creative if successful.
convertToArrayAndStripNulls()  : mixed

Properties

$methods

private array<string|int, mixed> $methods

$resourceName

private string $resourceName

$serviceName

private string $serviceName

$servicePath

private string $servicePath

$stackParameters

private mixed $stackParameters = array('alt' => array('type' => 'string', 'location' => 'query'), 'fields' => array('type' => 'string', 'location' => 'query'), 'trace' => array('type' => 'string', 'location' => 'query'), 'userIp' => array('type' => 'string', 'location' => 'query'), 'quotaUser' => array('type' => 'string', 'location' => 'query'), 'data' => array('type' => 'string', 'location' => 'body'), 'mimeType' => array('type' => 'string', 'location' => 'header'), 'uploadType' => array('type' => 'string', 'location' => 'query'), 'mediaUpload' => array('type' => 'complex', 'location' => 'query'), 'prettyPrint' => array('type' => 'string', 'location' => 'query'))

Methods

__construct()

public __construct(mixed $service, mixed $serviceName, mixed $resourceName, mixed $resource) : mixed
Parameters
$service : mixed
$serviceName : mixed
$resourceName : mixed
$resource : mixed
Return values
mixed

call()

TODO: This function needs simplifying.

public call( $name,  $arguments[,  $expectedClass = null ]) : Google_Http_Request|expectedClass
Parameters
$name :
$arguments :
$expectedClass : = null
  • optional, the expected class name
Tags
throws
Google_Exception
Return values
Google_Http_Request|expectedClass

create()

Creates a new creative. Returns the newly created creative if successful.

public create(string $advertiserId, Google_Service_DisplayVideo_Creative $postBody[, array<string|int, mixed> $optParams = array() ]) : Google_Service_DisplayVideo_Creative

(creatives.create)

Parameters
$advertiserId : string

Output only. The unique ID of the advertiser the creative belongs to.

$postBody : Google_Service_DisplayVideo_Creative
$optParams : array<string|int, mixed> = array()

Optional parameters.

Return values
Google_Service_DisplayVideo_Creative

createRequestUri()

Parse/expand request parameters and create a fully qualified request uri.

public createRequestUri(string $restPath, array<string|int, mixed> $params) : string
Parameters
$restPath : string
$params : array<string|int, mixed>
Tags
static
Return values
string

$requestUrl

delete()

Deletes a creative. Returns error code `NOT_FOUND` if the creative does not exist. The creative should be archived first, i.e. set entity_status to `ENTITY_STATUS_ARCHIVED`, before it can be deleted. (creatives.delete)

public delete(string $advertiserId, string $creativeId[, array<string|int, mixed> $optParams = array() ]) : Google_Service_DisplayVideo_DisplayvideoEmpty
Parameters
$advertiserId : string

The ID of the advertiser this creative belongs to.

$creativeId : string

The ID of the creative to be deleted.

$optParams : array<string|int, mixed> = array()

Optional parameters.

Return values
Google_Service_DisplayVideo_DisplayvideoEmpty

get()

Gets a creative. (creatives.get)

public get(string $advertiserId, string $creativeId[, array<string|int, mixed> $optParams = array() ]) : Google_Service_DisplayVideo_Creative
Parameters
$advertiserId : string

Required. The ID of the advertiser this creative belongs to.

$creativeId : string

Required. The ID of the creative to fetch.

$optParams : array<string|int, mixed> = array()

Optional parameters.

Return values
Google_Service_DisplayVideo_Creative

listAdvertisersCreatives()

Lists creatives in an advertiser. The order is defined by the order_by parameter. If a filter by entity_status is not specified, creatives with `ENTITY_STATUS_ARCHIVED` will not be included in the results.

public listAdvertisersCreatives(string $advertiserId[, array<string|int, mixed> $optParams = array() ]) : Google_Service_DisplayVideo_ListCreativesResponse

(creatives.listAdvertisersCreatives)

Parameters
$advertiserId : string

Required. The ID of the advertiser to list creatives for.

$optParams : array<string|int, mixed> = array()

Optional parameters.

Tags
opt_param

int pageSize Requested page size. Must be between 1 and 100. If unspecified will default to 100. Returns error code INVALID_ARGUMENT if an invalid value is specified.

opt_param

string orderBy Field by which to sort the list. Acceptable values are: * creativeId (default) * createTime * mediaDuration * dimensions (sorts by width first, then by height) The default sorting order is ascending. To specify descending order for a field, a suffix "desc" should be added to the field name. Example: createTime desc.

opt_param

string filter Allows filtering by creative properties. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restriction for the same field must be combined by OR. * Restriction for different fields must be combined by AND. * Between ( and ) there can only be restrictions combined by OR for the same field. * A restriction has the form of {field} {operator} {value}. * The operator must be EQUALS (=) for the following fields: - entityStatus - creativeType. - dimensions - minDuration - maxDuration - approvalStatus - exchangeReviewStatus - dynamic - creativeId * The operator must be HAS (:) for the following fields: - lineItemIds * For entityStatus, minDuration, maxDuration, and dynamic there may be at most one restriction. * For dimensions, the value is in the form of "{width}x{height}". * For exchangeReviewStatus, the value is in the form of {exchange}-{reviewStatus}. * For minDuration and maxDuration, the value is in the form of "{duration}s". Only seconds are supported with millisecond granularity. * There may be multiple lineItemIds restrictions in order to search against multiple possible line item IDs. * There may be multiple creativeId restrictions in order to search against multiple possible creative IDs. Examples: * All native creatives: creativeType="CREATIVE_TYPE_NATIVE" * All active creatives with 300x400 or 50x100 dimensions: entityStatus="ENTITY_STATUS_ACTIVE" AND (dimensions="300x400" OR dimensions="50x100") * All dynamic creatives that are approved by AdX or AppNexus, with a minimum duration of 5 seconds and 200ms. dynamic="true" AND minDuration="5.2s" AND (exchangeReviewStatus ="EXCHANGE_GOOGLE_AD_MANAGER-REVIEW_STATUS_APPROVED" OR exchangeReviewStatus ="EXCHANGE_APPNEXUS-REVIEW_STATUS_APPROVED") * All video creatives that are associated with line item ID 1 or 2: creativeType="CREATIVE_TYPE_VIDEO" AND (lineItemIds:1 OR lineItemIds:2) * Find creatives by multiple creative IDs: creativeId=1 OR creativeId=2 The length of this field should be no more than 500 characters.

opt_param

string pageToken A token identifying a page of results the server should return. Typically, this is the value of next_page_token returned from the previous call to ListCreatives method. If not specified, the first page of results will be returned.

Return values
Google_Service_DisplayVideo_ListCreativesResponse

patch()

Updates an existing creative. Returns the updated creative if successful.

public patch(string $advertiserId, string $creativeId, Google_Service_DisplayVideo_Creative $postBody[, array<string|int, mixed> $optParams = array() ]) : Google_Service_DisplayVideo_Creative

(creatives.patch)

Parameters
$advertiserId : string

Output only. The unique ID of the advertiser the creative belongs to.

$creativeId : string

Output only. The unique ID of the creative. Assigned by the system.

$postBody : Google_Service_DisplayVideo_Creative
$optParams : array<string|int, mixed> = array()

Optional parameters.

Tags
opt_param

string updateMask Required. The mask to control which fields to update.

Return values
Google_Service_DisplayVideo_Creative

convertToArrayAndStripNulls()

protected convertToArrayAndStripNulls(mixed $o) : mixed
Parameters
$o : mixed
Return values
mixed

Search results