Skip to content

Commit 7785d1f

Browse files
Regenerate displayvideo client
1 parent c9fa9d7 commit 7785d1f

9 files changed

+210
-15
lines changed

src/DisplayVideo/AlgorithmRules.php

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,29 @@
1919

2020
class AlgorithmRules extends \Google\Model
2121
{
22+
/**
23+
* @var string
24+
*/
25+
public $attributionModelId;
2226
protected $impressionSignalRulesetType = AlgorithmRulesRuleset::class;
2327
protected $impressionSignalRulesetDataType = '';
28+
protected $postImpressionSignalRulesetType = AlgorithmRulesRuleset::class;
29+
protected $postImpressionSignalRulesetDataType = '';
2430

31+
/**
32+
* @param string
33+
*/
34+
public function setAttributionModelId($attributionModelId)
35+
{
36+
$this->attributionModelId = $attributionModelId;
37+
}
38+
/**
39+
* @return string
40+
*/
41+
public function getAttributionModelId()
42+
{
43+
return $this->attributionModelId;
44+
}
2545
/**
2646
* @param AlgorithmRulesRuleset
2747
*/
@@ -36,6 +56,20 @@ public function getImpressionSignalRuleset()
3656
{
3757
return $this->impressionSignalRuleset;
3858
}
59+
/**
60+
* @param AlgorithmRulesRuleset
61+
*/
62+
public function setPostImpressionSignalRuleset(AlgorithmRulesRuleset $postImpressionSignalRuleset)
63+
{
64+
$this->postImpressionSignalRuleset = $postImpressionSignalRuleset;
65+
}
66+
/**
67+
* @return AlgorithmRulesRuleset
68+
*/
69+
public function getPostImpressionSignalRuleset()
70+
{
71+
return $this->postImpressionSignalRuleset;
72+
}
3973
}
4074

4175
// Adding a class alias for backwards compatibility with the previous class name.

src/DisplayVideo/AlgorithmRulesComparisonValue.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ class AlgorithmRulesComparisonValue extends \Google\Model
5252
* @var string
5353
*/
5454
public $stringValue;
55+
/**
56+
* @var string
57+
*/
58+
public $videoPlayerSizeValue;
5559

5660
/**
5761
* @param bool
@@ -187,6 +191,20 @@ public function getStringValue()
187191
{
188192
return $this->stringValue;
189193
}
194+
/**
195+
* @param string
196+
*/
197+
public function setVideoPlayerSizeValue($videoPlayerSizeValue)
198+
{
199+
$this->videoPlayerSizeValue = $videoPlayerSizeValue;
200+
}
201+
/**
202+
* @return string
203+
*/
204+
public function getVideoPlayerSizeValue()
205+
{
206+
return $this->videoPlayerSizeValue;
207+
}
190208
}
191209

192210
// Adding a class alias for backwards compatibility with the previous class name.
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\DisplayVideo;
19+
20+
class AlgorithmRulesFloodlightActivityConversionSignal extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $conversionCounting;
26+
/**
27+
* @var string
28+
*/
29+
public $countingMethod;
30+
/**
31+
* @var string
32+
*/
33+
public $floodlightActivityId;
34+
35+
/**
36+
* @param string
37+
*/
38+
public function setConversionCounting($conversionCounting)
39+
{
40+
$this->conversionCounting = $conversionCounting;
41+
}
42+
/**
43+
* @return string
44+
*/
45+
public function getConversionCounting()
46+
{
47+
return $this->conversionCounting;
48+
}
49+
/**
50+
* @param string
51+
*/
52+
public function setCountingMethod($countingMethod)
53+
{
54+
$this->countingMethod = $countingMethod;
55+
}
56+
/**
57+
* @return string
58+
*/
59+
public function getCountingMethod()
60+
{
61+
return $this->countingMethod;
62+
}
63+
/**
64+
* @param string
65+
*/
66+
public function setFloodlightActivityId($floodlightActivityId)
67+
{
68+
$this->floodlightActivityId = $floodlightActivityId;
69+
}
70+
/**
71+
* @return string
72+
*/
73+
public function getFloodlightActivityId()
74+
{
75+
return $this->floodlightActivityId;
76+
}
77+
}
78+
79+
// Adding a class alias for backwards compatibility with the previous class name.
80+
class_alias(AlgorithmRulesFloodlightActivityConversionSignal::class, 'Google_Service_DisplayVideo_AlgorithmRulesFloodlightActivityConversionSignal');

src/DisplayVideo/AlgorithmRulesSignal.php

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,47 @@
1919

2020
class AlgorithmRulesSignal extends \Google\Model
2121
{
22+
/**
23+
* @var string
24+
*/
25+
public $activeViewSignal;
26+
/**
27+
* @var string
28+
*/
29+
public $clickSignal;
2230
/**
2331
* @var string
2432
*/
2533
public $impressionSignal;
2634

35+
/**
36+
* @param string
37+
*/
38+
public function setActiveViewSignal($activeViewSignal)
39+
{
40+
$this->activeViewSignal = $activeViewSignal;
41+
}
42+
/**
43+
* @return string
44+
*/
45+
public function getActiveViewSignal()
46+
{
47+
return $this->activeViewSignal;
48+
}
49+
/**
50+
* @param string
51+
*/
52+
public function setClickSignal($clickSignal)
53+
{
54+
$this->clickSignal = $clickSignal;
55+
}
56+
/**
57+
* @return string
58+
*/
59+
public function getClickSignal()
60+
{
61+
return $this->clickSignal;
62+
}
2763
/**
2864
* @param string
2965
*/

src/DisplayVideo/AlgorithmRulesSignalValue.php

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,42 @@
1919

2020
class AlgorithmRulesSignalValue extends \Google\Model
2121
{
22+
/**
23+
* @var string
24+
*/
25+
public $activeViewSignal;
26+
protected $floodlightActivityConversionSignalType = AlgorithmRulesFloodlightActivityConversionSignal::class;
27+
protected $floodlightActivityConversionSignalDataType = '';
2228
public $number;
2329

30+
/**
31+
* @param string
32+
*/
33+
public function setActiveViewSignal($activeViewSignal)
34+
{
35+
$this->activeViewSignal = $activeViewSignal;
36+
}
37+
/**
38+
* @return string
39+
*/
40+
public function getActiveViewSignal()
41+
{
42+
return $this->activeViewSignal;
43+
}
44+
/**
45+
* @param AlgorithmRulesFloodlightActivityConversionSignal
46+
*/
47+
public function setFloodlightActivityConversionSignal(AlgorithmRulesFloodlightActivityConversionSignal $floodlightActivityConversionSignal)
48+
{
49+
$this->floodlightActivityConversionSignal = $floodlightActivityConversionSignal;
50+
}
51+
/**
52+
* @return AlgorithmRulesFloodlightActivityConversionSignal
53+
*/
54+
public function getFloodlightActivityConversionSignal()
55+
{
56+
return $this->floodlightActivityConversionSignal;
57+
}
2458
public function setNumber($number)
2559
{
2660
$this->number = $number;

src/DisplayVideo/Resource/CustomBiddingAlgorithms.php

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,8 @@ public function listCustomBiddingAlgorithms($optParams = [])
113113
}
114114
/**
115115
* Updates an existing custom bidding algorithm. Returns the updated custom
116-
* bidding algorithm if successful. *Warning*: Starting **April 1, 2025**,
117-
* requests updating custom bidding algorithms that are assigned to line items
118-
* will return an error. [Read more about this announced change](/display-
119-
* video/api/deprecations#features.custom_bidding_floodlight).
120-
* (customBiddingAlgorithms.patch)
116+
* bidding algorithm if successful. Requests updating a custom bidding algorithm
117+
* assigned to a line item will return an error. (customBiddingAlgorithms.patch)
121118
*
122119
* @param string $customBiddingAlgorithmId Output only. The unique ID of the
123120
* custom bidding algorithm. Assigned by the system.

src/DisplayVideo/Resource/CustomBiddingAlgorithmsRules.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@ class CustomBiddingAlgorithmsRules extends \Google\Service\Resource
3232
{
3333
/**
3434
* Creates a new rules resource. Returns the newly created rules resource if
35-
* successful. *Warning*: Starting **April 1, 2025**, requests updating custom
36-
* bidding algorithms that are assigned to line items will return an error.
37-
* [Read more about this announced change](/display-
38-
* video/api/deprecations#features.custom_bidding_floodlight). (rules.create)
35+
* successful. Requests creating a custom bidding rules resource under an
36+
* algorithm assigned to a line item will return an error. (rules.create)
3937
*
4038
* @param string $customBiddingAlgorithmId Required. The ID of the custom
4139
* bidding algorithm that owns the rules resource.

src/DisplayVideo/Resource/CustomBiddingAlgorithmsScripts.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@ class CustomBiddingAlgorithmsScripts extends \Google\Service\Resource
3232
{
3333
/**
3434
* Creates a new custom bidding script. Returns the newly created script if
35-
* successful. *Warning*: Starting **April 1, 2025**, requests updating custom
36-
* bidding algorithms that are assigned to line items will return an error.
37-
* [Read more about this announced change](/display-
38-
* video/api/deprecations#features.custom_bidding_floodlight). (scripts.create)
35+
* successful. Requests creating a custom bidding script under an algorithm
36+
* assigned to a line item will return an error. (scripts.create)
3937
*
4038
* @param string $customBiddingAlgorithmId Required. The ID of the custom
4139
* bidding algorithm that owns the script.

src/DisplayVideo/Resource/Sdfdownloadtasks.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class Sdfdownloadtasks extends \Google\Service\Resource
3636
* SdfDownloadTaskMetadata. If the request is successful, the response type of
3737
* the operation is SdfDownloadTask. The response will not include the download
3838
* files, which must be retrieved with media.download. The state of operation
39-
* can be retrieved with sdfdownloadtask.operations.get. Any errors can be found
40-
* in the error.message. Note that error.details is expected to be empty.
39+
* can be retrieved with `sdfdownloadtasks.operations.get`. Any errors can be
40+
* found in the error.message. Note that error.details is expected to be empty.
4141
* (sdfdownloadtasks.create)
4242
*
4343
* @param CreateSdfDownloadTaskRequest $postBody

0 commit comments

Comments
 (0)