Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-displayvideo/v2/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-displayvideo</artifactId>
<version>v2-rev20260601-2.0.0</version>
<version>v2-rev20260606-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20260601-2.0.0'
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20260606-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,14 @@ public final class AssignedTargetingOption extends com.google.api.client.json.Ge
@com.google.api.client.util.Key
private YoutubeChannelAssignedTargetingOptionDetails youtubeChannelDetails;

/**
* YouTube channel pack details. This field will be populated when the targeting_type is
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private YoutubeChannelPackAssignedTargetingOptionDetails youtubeChannelPackDetails;

/**
* YouTube video details. This field will be populated when the targeting_type is
* `TARGETING_TYPE_YOUTUBE_VIDEO`.
Expand Down Expand Up @@ -1491,6 +1499,25 @@ public AssignedTargetingOption setYoutubeChannelDetails(YoutubeChannelAssignedTa
return this;
}

/**
* YouTube channel pack details. This field will be populated when the targeting_type is
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
* @return value or {@code null} for none
*/
public YoutubeChannelPackAssignedTargetingOptionDetails getYoutubeChannelPackDetails() {
return youtubeChannelPackDetails;
}

/**
* YouTube channel pack details. This field will be populated when the targeting_type is
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
* @param youtubeChannelPackDetails youtubeChannelPackDetails or {@code null} for none
*/
public AssignedTargetingOption setYoutubeChannelPackDetails(YoutubeChannelPackAssignedTargetingOptionDetails youtubeChannelPackDetails) {
this.youtubeChannelPackDetails = youtubeChannelPackDetails;
return this;
}

/**
* YouTube video details. This field will be populated when the targeting_type is
* `TARGETING_TYPE_YOUTUBE_VIDEO`.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
/*
* 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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.displayvideo.v2.model;

/**
* Details for YouTube channel pack assigned targeting option. This will be populated in the
* youtube_channel_pack_details field when targeting_type is `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Display & Video 360 API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class YoutubeChannelPackAssignedTargetingOptionDetails extends com.google.api.client.json.GenericJson {

/**
* Required. The ID of the YouTube channel pack.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long channelPackId;

/**
* Optional. Indicates if this option is being negatively targeted.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean negative;

/**
* Required. The ID of the YouTube channel pack.
* @return value or {@code null} for none
*/
public java.lang.Long getChannelPackId() {
return channelPackId;
}

/**
* Required. The ID of the YouTube channel pack.
* @param channelPackId channelPackId or {@code null} for none
*/
public YoutubeChannelPackAssignedTargetingOptionDetails setChannelPackId(java.lang.Long channelPackId) {
this.channelPackId = channelPackId;
return this;
}

/**
* Optional. Indicates if this option is being negatively targeted.
* @return value or {@code null} for none
*/
public java.lang.Boolean getNegative() {
return negative;
}

/**
* Optional. Indicates if this option is being negatively targeted.
* @param negative negative or {@code null} for none
*/
public YoutubeChannelPackAssignedTargetingOptionDetails setNegative(java.lang.Boolean negative) {
this.negative = negative;
return this;
}

@Override
public YoutubeChannelPackAssignedTargetingOptionDetails set(String fieldName, Object value) {
return (YoutubeChannelPackAssignedTargetingOptionDetails) super.set(fieldName, value);
}

@Override
public YoutubeChannelPackAssignedTargetingOptionDetails clone() {
return (YoutubeChannelPackAssignedTargetingOptionDetails) super.clone();
}

}
4 changes: 2 additions & 2 deletions clients/google-api-services-displayvideo/v2/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-displayvideo</artifactId>
<version>v2-rev20260601-2.0.0</version>
<name>Display &amp; Video 360 API v2-rev20260601-2.0.0</name>
<version>v2-rev20260606-2.0.0</version>
<name>Display &amp; Video 360 API v2-rev20260606-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-displayvideo/v2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-displayvideo</artifactId>
<version>v2-rev20260601-2.0.0</version>
<version>v2-rev20260606-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20260601-2.0.0'
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20260606-2.0.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-displayvideo/v3/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-displayvideo</artifactId>
<version>v3-rev20260601-2.0.0</version>
<version>v3-rev20260606-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-displayvideo:v3-rev20260601-2.0.0'
implementation 'com.google.apis:google-api-services-displayvideo:v3-rev20260606-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,14 @@ public final class AssignedTargetingOption extends com.google.api.client.json.Ge
@com.google.api.client.util.Key
private YoutubeChannelAssignedTargetingOptionDetails youtubeChannelDetails;

/**
* YouTube channel pack details. This field will be populated when the targeting_type is
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private YoutubeChannelPackAssignedTargetingOptionDetails youtubeChannelPackDetails;

/**
* YouTube video details. This field will be populated when the targeting_type is
* `TARGETING_TYPE_YOUTUBE_VIDEO`.
Expand Down Expand Up @@ -1527,6 +1535,25 @@ public AssignedTargetingOption setYoutubeChannelDetails(YoutubeChannelAssignedTa
return this;
}

/**
* YouTube channel pack details. This field will be populated when the targeting_type is
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
* @return value or {@code null} for none
*/
public YoutubeChannelPackAssignedTargetingOptionDetails getYoutubeChannelPackDetails() {
return youtubeChannelPackDetails;
}

/**
* YouTube channel pack details. This field will be populated when the targeting_type is
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
* @param youtubeChannelPackDetails youtubeChannelPackDetails or {@code null} for none
*/
public AssignedTargetingOption setYoutubeChannelPackDetails(YoutubeChannelPackAssignedTargetingOptionDetails youtubeChannelPackDetails) {
this.youtubeChannelPackDetails = youtubeChannelPackDetails;
return this;
}

/**
* YouTube video details. This field will be populated when the targeting_type is
* `TARGETING_TYPE_YOUTUBE_VIDEO`.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
/*
* 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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.displayvideo.v3.model;

/**
* Details for YouTube channel pack assigned targeting option. This will be populated in the
* youtube_channel_pack_details field when targeting_type is `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Display & Video 360 API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class YoutubeChannelPackAssignedTargetingOptionDetails extends com.google.api.client.json.GenericJson {

/**
* Required. The ID of the YouTube channel pack.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long channelPackId;

/**
* Optional. Indicates if this option is being negatively targeted.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean negative;

/**
* Required. The ID of the YouTube channel pack.
* @return value or {@code null} for none
*/
public java.lang.Long getChannelPackId() {
return channelPackId;
}

/**
* Required. The ID of the YouTube channel pack.
* @param channelPackId channelPackId or {@code null} for none
*/
public YoutubeChannelPackAssignedTargetingOptionDetails setChannelPackId(java.lang.Long channelPackId) {
this.channelPackId = channelPackId;
return this;
}

/**
* Optional. Indicates if this option is being negatively targeted.
* @return value or {@code null} for none
*/
public java.lang.Boolean getNegative() {
return negative;
}

/**
* Optional. Indicates if this option is being negatively targeted.
* @param negative negative or {@code null} for none
*/
public YoutubeChannelPackAssignedTargetingOptionDetails setNegative(java.lang.Boolean negative) {
this.negative = negative;
return this;
}

@Override
public YoutubeChannelPackAssignedTargetingOptionDetails set(String fieldName, Object value) {
return (YoutubeChannelPackAssignedTargetingOptionDetails) super.set(fieldName, value);
}

@Override
public YoutubeChannelPackAssignedTargetingOptionDetails clone() {
return (YoutubeChannelPackAssignedTargetingOptionDetails) super.clone();
}

}
4 changes: 2 additions & 2 deletions clients/google-api-services-displayvideo/v3/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-displayvideo</artifactId>
<version>v3-rev20260601-2.0.0</version>
<name>Display &amp; Video 360 API v3-rev20260601-2.0.0</name>
<version>v3-rev20260606-2.0.0</version>
<name>Display &amp; Video 360 API v3-rev20260606-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-displayvideo/v3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-displayvideo</artifactId>
<version>v3-rev20260601-2.0.0</version>
<version>v3-rev20260606-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-displayvideo:v3-rev20260601-2.0.0'
implementation 'com.google.apis:google-api-services-displayvideo:v3-rev20260606-2.0.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-displayvideo/v4/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-displayvideo</artifactId>
<version>v4-rev20260601-2.0.0</version>
<version>v4-rev20260606-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-displayvideo:v4-rev20260601-2.0.0'
implementation 'com.google.apis:google-api-services-displayvideo:v4-rev20260606-2.0.0'
}
```

Expand Down
Loading