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
18namespace Google\Service\DisplayVideo;
19
20class AudienceGroupAssignedTargetingOptionDetails extends \Google\Collection
21{
22  protected $collection_key = 'includedFirstAndThirdPartyAudienceGroups';
23  protected $excludedFirstAndThirdPartyAudienceGroupType = FirstAndThirdPartyAudienceGroup::class;
24  protected $excludedFirstAndThirdPartyAudienceGroupDataType = '';
25  protected $excludedGoogleAudienceGroupType = GoogleAudienceGroup::class;
26  protected $excludedGoogleAudienceGroupDataType = '';
27  protected $includedCombinedAudienceGroupType = CombinedAudienceGroup::class;
28  protected $includedCombinedAudienceGroupDataType = '';
29  protected $includedCustomListGroupType = CustomListGroup::class;
30  protected $includedCustomListGroupDataType = '';
31  protected $includedFirstAndThirdPartyAudienceGroupsType = FirstAndThirdPartyAudienceGroup::class;
32  protected $includedFirstAndThirdPartyAudienceGroupsDataType = 'array';
33  protected $includedGoogleAudienceGroupType = GoogleAudienceGroup::class;
34  protected $includedGoogleAudienceGroupDataType = '';
35
36  /**
37   * @param FirstAndThirdPartyAudienceGroup
38   */
39  public function setExcludedFirstAndThirdPartyAudienceGroup(FirstAndThirdPartyAudienceGroup $excludedFirstAndThirdPartyAudienceGroup)
40  {
41    $this->excludedFirstAndThirdPartyAudienceGroup = $excludedFirstAndThirdPartyAudienceGroup;
42  }
43  /**
44   * @return FirstAndThirdPartyAudienceGroup
45   */
46  public function getExcludedFirstAndThirdPartyAudienceGroup()
47  {
48    return $this->excludedFirstAndThirdPartyAudienceGroup;
49  }
50  /**
51   * @param GoogleAudienceGroup
52   */
53  public function setExcludedGoogleAudienceGroup(GoogleAudienceGroup $excludedGoogleAudienceGroup)
54  {
55    $this->excludedGoogleAudienceGroup = $excludedGoogleAudienceGroup;
56  }
57  /**
58   * @return GoogleAudienceGroup
59   */
60  public function getExcludedGoogleAudienceGroup()
61  {
62    return $this->excludedGoogleAudienceGroup;
63  }
64  /**
65   * @param CombinedAudienceGroup
66   */
67  public function setIncludedCombinedAudienceGroup(CombinedAudienceGroup $includedCombinedAudienceGroup)
68  {
69    $this->includedCombinedAudienceGroup = $includedCombinedAudienceGroup;
70  }
71  /**
72   * @return CombinedAudienceGroup
73   */
74  public function getIncludedCombinedAudienceGroup()
75  {
76    return $this->includedCombinedAudienceGroup;
77  }
78  /**
79   * @param CustomListGroup
80   */
81  public function setIncludedCustomListGroup(CustomListGroup $includedCustomListGroup)
82  {
83    $this->includedCustomListGroup = $includedCustomListGroup;
84  }
85  /**
86   * @return CustomListGroup
87   */
88  public function getIncludedCustomListGroup()
89  {
90    return $this->includedCustomListGroup;
91  }
92  /**
93   * @param FirstAndThirdPartyAudienceGroup[]
94   */
95  public function setIncludedFirstAndThirdPartyAudienceGroups($includedFirstAndThirdPartyAudienceGroups)
96  {
97    $this->includedFirstAndThirdPartyAudienceGroups = $includedFirstAndThirdPartyAudienceGroups;
98  }
99  /**
100   * @return FirstAndThirdPartyAudienceGroup[]
101   */
102  public function getIncludedFirstAndThirdPartyAudienceGroups()
103  {
104    return $this->includedFirstAndThirdPartyAudienceGroups;
105  }
106  /**
107   * @param GoogleAudienceGroup
108   */
109  public function setIncludedGoogleAudienceGroup(GoogleAudienceGroup $includedGoogleAudienceGroup)
110  {
111    $this->includedGoogleAudienceGroup = $includedGoogleAudienceGroup;
112  }
113  /**
114   * @return GoogleAudienceGroup
115   */
116  public function getIncludedGoogleAudienceGroup()
117  {
118    return $this->includedGoogleAudienceGroup;
119  }
120}
121
122// Adding a class alias for backwards compatibility with the previous class name.
123class_alias(AudienceGroupAssignedTargetingOptionDetails::class, 'Google_Service_DisplayVideo_AudienceGroupAssignedTargetingOptionDetails');
124