Skip to content

Commit 343809f

Browse files
1 parent b5d9276 commit 343809f

19 files changed

+10444
-4536
lines changed

clients/google-api-services-displayvideo/v2/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-displayvideo</artifactId>
25-
<version>v2-rev20250709-2.0.0</version>
25+
<version>v2-rev20250729-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20250709-2.0.0'
38+
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20250729-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-displayvideo/v2/2.0.0/com/google/api/services/displayvideo/v2/DisplayVideo.java

Lines changed: 4801 additions & 2259 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.displayvideo.v2.model;
18+
19+
/**
20+
* Model definition for BulkListCampaignAssignedTargetingOptionsResponse.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Display & Video 360 API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class BulkListCampaignAssignedTargetingOptionsResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The list of assigned targeting options. This list will be absent if empty.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<AssignedTargetingOption> assignedTargetingOptions;
39+
40+
static {
41+
// hack to force ProGuard to consider AssignedTargetingOption used, since otherwise it would be stripped out
42+
// see https://github.com/google/google-api-java-client/issues/543
43+
com.google.api.client.util.Data.nullOf(AssignedTargetingOption.class);
44+
}
45+
46+
/**
47+
* A token identifying the next page of results. This value should be specified as the pageToken
48+
* in a subsequent BulkListCampaignAssignedTargetingOptionsRequest to fetch the next page of
49+
* results. This token will be absent if there are no more assigned_targeting_options to return.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String nextPageToken;
54+
55+
/**
56+
* The list of assigned targeting options. This list will be absent if empty.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.util.List<AssignedTargetingOption> getAssignedTargetingOptions() {
60+
return assignedTargetingOptions;
61+
}
62+
63+
/**
64+
* The list of assigned targeting options. This list will be absent if empty.
65+
* @param assignedTargetingOptions assignedTargetingOptions or {@code null} for none
66+
*/
67+
public BulkListCampaignAssignedTargetingOptionsResponse setAssignedTargetingOptions(java.util.List<AssignedTargetingOption> assignedTargetingOptions) {
68+
this.assignedTargetingOptions = assignedTargetingOptions;
69+
return this;
70+
}
71+
72+
/**
73+
* A token identifying the next page of results. This value should be specified as the pageToken
74+
* in a subsequent BulkListCampaignAssignedTargetingOptionsRequest to fetch the next page of
75+
* results. This token will be absent if there are no more assigned_targeting_options to return.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.lang.String getNextPageToken() {
79+
return nextPageToken;
80+
}
81+
82+
/**
83+
* A token identifying the next page of results. This value should be specified as the pageToken
84+
* in a subsequent BulkListCampaignAssignedTargetingOptionsRequest to fetch the next page of
85+
* results. This token will be absent if there are no more assigned_targeting_options to return.
86+
* @param nextPageToken nextPageToken or {@code null} for none
87+
*/
88+
public BulkListCampaignAssignedTargetingOptionsResponse setNextPageToken(java.lang.String nextPageToken) {
89+
this.nextPageToken = nextPageToken;
90+
return this;
91+
}
92+
93+
@Override
94+
public BulkListCampaignAssignedTargetingOptionsResponse set(String fieldName, Object value) {
95+
return (BulkListCampaignAssignedTargetingOptionsResponse) super.set(fieldName, value);
96+
}
97+
98+
@Override
99+
public BulkListCampaignAssignedTargetingOptionsResponse clone() {
100+
return (BulkListCampaignAssignedTargetingOptionsResponse) super.clone();
101+
}
102+
103+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.displayvideo.v2.model;
18+
19+
/**
20+
* Model definition for BulkListInsertionOrderAssignedTargetingOptionsResponse.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Display & Video 360 API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class BulkListInsertionOrderAssignedTargetingOptionsResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The list of assigned targeting options. This list will be absent if empty.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<AssignedTargetingOption> assignedTargetingOptions;
39+
40+
static {
41+
// hack to force ProGuard to consider AssignedTargetingOption used, since otherwise it would be stripped out
42+
// see https://github.com/google/google-api-java-client/issues/543
43+
com.google.api.client.util.Data.nullOf(AssignedTargetingOption.class);
44+
}
45+
46+
/**
47+
* A token identifying the next page of results. This value should be specified as the pageToken
48+
* in a subsequent BulkListInsertionOrderAssignedTargetingOptionsRequest to fetch the next page of
49+
* results. This token will be absent if there are no more assigned_targeting_options to return.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String nextPageToken;
54+
55+
/**
56+
* The list of assigned targeting options. This list will be absent if empty.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.util.List<AssignedTargetingOption> getAssignedTargetingOptions() {
60+
return assignedTargetingOptions;
61+
}
62+
63+
/**
64+
* The list of assigned targeting options. This list will be absent if empty.
65+
* @param assignedTargetingOptions assignedTargetingOptions or {@code null} for none
66+
*/
67+
public BulkListInsertionOrderAssignedTargetingOptionsResponse setAssignedTargetingOptions(java.util.List<AssignedTargetingOption> assignedTargetingOptions) {
68+
this.assignedTargetingOptions = assignedTargetingOptions;
69+
return this;
70+
}
71+
72+
/**
73+
* A token identifying the next page of results. This value should be specified as the pageToken
74+
* in a subsequent BulkListInsertionOrderAssignedTargetingOptionsRequest to fetch the next page of
75+
* results. This token will be absent if there are no more assigned_targeting_options to return.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.lang.String getNextPageToken() {
79+
return nextPageToken;
80+
}
81+
82+
/**
83+
* A token identifying the next page of results. This value should be specified as the pageToken
84+
* in a subsequent BulkListInsertionOrderAssignedTargetingOptionsRequest to fetch the next page of
85+
* results. This token will be absent if there are no more assigned_targeting_options to return.
86+
* @param nextPageToken nextPageToken or {@code null} for none
87+
*/
88+
public BulkListInsertionOrderAssignedTargetingOptionsResponse setNextPageToken(java.lang.String nextPageToken) {
89+
this.nextPageToken = nextPageToken;
90+
return this;
91+
}
92+
93+
@Override
94+
public BulkListInsertionOrderAssignedTargetingOptionsResponse set(String fieldName, Object value) {
95+
return (BulkListInsertionOrderAssignedTargetingOptionsResponse) super.set(fieldName, value);
96+
}
97+
98+
@Override
99+
public BulkListInsertionOrderAssignedTargetingOptionsResponse clone() {
100+
return (BulkListInsertionOrderAssignedTargetingOptionsResponse) super.clone();
101+
}
102+
103+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.displayvideo.v2.model;
18+
19+
/**
20+
* Response message for ListCampaignAssignedTargetingOptions.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Display & Video 360 API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ListCampaignAssignedTargetingOptionsResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The list of assigned targeting options. This list will be absent if empty.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<AssignedTargetingOption> assignedTargetingOptions;
39+
40+
static {
41+
// hack to force ProGuard to consider AssignedTargetingOption used, since otherwise it would be stripped out
42+
// see https://github.com/google/google-api-java-client/issues/543
43+
com.google.api.client.util.Data.nullOf(AssignedTargetingOption.class);
44+
}
45+
46+
/**
47+
* A token identifying the next page of results. This value should be specified as the pageToken
48+
* in a subsequent ListCampaignAssignedTargetingOptionsRequest to fetch the next page of results.
49+
* This token will be absent if there are no more assigned_targeting_options to return.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String nextPageToken;
54+
55+
/**
56+
* The list of assigned targeting options. This list will be absent if empty.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.util.List<AssignedTargetingOption> getAssignedTargetingOptions() {
60+
return assignedTargetingOptions;
61+
}
62+
63+
/**
64+
* The list of assigned targeting options. This list will be absent if empty.
65+
* @param assignedTargetingOptions assignedTargetingOptions or {@code null} for none
66+
*/
67+
public ListCampaignAssignedTargetingOptionsResponse setAssignedTargetingOptions(java.util.List<AssignedTargetingOption> assignedTargetingOptions) {
68+
this.assignedTargetingOptions = assignedTargetingOptions;
69+
return this;
70+
}
71+
72+
/**
73+
* A token identifying the next page of results. This value should be specified as the pageToken
74+
* in a subsequent ListCampaignAssignedTargetingOptionsRequest to fetch the next page of results.
75+
* This token will be absent if there are no more assigned_targeting_options to return.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.lang.String getNextPageToken() {
79+
return nextPageToken;
80+
}
81+
82+
/**
83+
* A token identifying the next page of results. This value should be specified as the pageToken
84+
* in a subsequent ListCampaignAssignedTargetingOptionsRequest to fetch the next page of results.
85+
* This token will be absent if there are no more assigned_targeting_options to return.
86+
* @param nextPageToken nextPageToken or {@code null} for none
87+
*/
88+
public ListCampaignAssignedTargetingOptionsResponse setNextPageToken(java.lang.String nextPageToken) {
89+
this.nextPageToken = nextPageToken;
90+
return this;
91+
}
92+
93+
@Override
94+
public ListCampaignAssignedTargetingOptionsResponse set(String fieldName, Object value) {
95+
return (ListCampaignAssignedTargetingOptionsResponse) super.set(fieldName, value);
96+
}
97+
98+
@Override
99+
public ListCampaignAssignedTargetingOptionsResponse clone() {
100+
return (ListCampaignAssignedTargetingOptionsResponse) super.clone();
101+
}
102+
103+
}

0 commit comments

Comments
 (0)