Skip to content

Commit 150f2c7

Browse files
1 parent f681d93 commit 150f2c7

File tree

18 files changed

+435
-18
lines changed

18 files changed

+435
-18
lines changed

clients/google-api-services-displayvideo/v1/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>v1-rev20231105-2.0.0</version>
25+
<version>v1-rev20231113-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:v1-rev20231105-2.0.0'
38+
implementation 'com.google.apis:google-api-services-displayvideo:v1-rev20231113-2.0.0'
3939
}
4040
```
4141

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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.v1.model;
18+
19+
/**
20+
* User consent status.
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 Consent extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Represents consent for ad personalization.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String adPersonalization;
39+
40+
/**
41+
* Represents consent for ad user data.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String adUserData;
46+
47+
/**
48+
* Represents consent for ad personalization.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getAdPersonalization() {
52+
return adPersonalization;
53+
}
54+
55+
/**
56+
* Represents consent for ad personalization.
57+
* @param adPersonalization adPersonalization or {@code null} for none
58+
*/
59+
public Consent setAdPersonalization(java.lang.String adPersonalization) {
60+
this.adPersonalization = adPersonalization;
61+
return this;
62+
}
63+
64+
/**
65+
* Represents consent for ad user data.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getAdUserData() {
69+
return adUserData;
70+
}
71+
72+
/**
73+
* Represents consent for ad user data.
74+
* @param adUserData adUserData or {@code null} for none
75+
*/
76+
public Consent setAdUserData(java.lang.String adUserData) {
77+
this.adUserData = adUserData;
78+
return this;
79+
}
80+
81+
@Override
82+
public Consent set(String fieldName, Object value) {
83+
return (Consent) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public Consent clone() {
88+
return (Consent) super.clone();
89+
}
90+
91+
}

clients/google-api-services-displayvideo/v1/2.0.0/com/google/api/services/displayvideo/v1/model/ContactInfoList.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
@SuppressWarnings("javadoc")
3131
public final class ContactInfoList extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Input only. User consent status.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private Consent consent;
39+
3340
/**
3441
* A list of ContactInfo objects defining Customer Match audience members. The size of members
3542
* after splitting the contact_infos mustn't be greater than 500,000.
@@ -44,6 +51,23 @@ public final class ContactInfoList extends com.google.api.client.json.GenericJso
4451
com.google.api.client.util.Data.nullOf(ContactInfo.class);
4552
}
4653

54+
/**
55+
* Input only. User consent status.
56+
* @return value or {@code null} for none
57+
*/
58+
public Consent getConsent() {
59+
return consent;
60+
}
61+
62+
/**
63+
* Input only. User consent status.
64+
* @param consent consent or {@code null} for none
65+
*/
66+
public ContactInfoList setConsent(Consent consent) {
67+
this.consent = consent;
68+
return this;
69+
}
70+
4771
/**
4872
* A list of ContactInfo objects defining Customer Match audience members. The size of members
4973
* after splitting the contact_infos mustn't be greater than 500,000.

clients/google-api-services-displayvideo/v1/2.0.0/com/google/api/services/displayvideo/v1/model/MobileDeviceIdList.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
@SuppressWarnings("javadoc")
3131
public final class MobileDeviceIdList extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Input only. User consent status.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private Consent consent;
39+
3340
/**
3441
* A list of mobile device IDs defining Customer Match audience members. The size of
3542
* mobile_device_ids mustn't be greater than 500,000.
@@ -38,6 +45,23 @@ public final class MobileDeviceIdList extends com.google.api.client.json.Generic
3845
@com.google.api.client.util.Key
3946
private java.util.List<java.lang.String> mobileDeviceIds;
4047

48+
/**
49+
* Input only. User consent status.
50+
* @return value or {@code null} for none
51+
*/
52+
public Consent getConsent() {
53+
return consent;
54+
}
55+
56+
/**
57+
* Input only. User consent status.
58+
* @param consent consent or {@code null} for none
59+
*/
60+
public MobileDeviceIdList setConsent(Consent consent) {
61+
this.consent = consent;
62+
return this;
63+
}
64+
4165
/**
4266
* A list of mobile device IDs defining Customer Match audience members. The size of
4367
* mobile_device_ids mustn't be greater than 500,000.

clients/google-api-services-displayvideo/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-displayvideo</artifactId>
11-
<version>v1-rev20231105-2.0.0</version>
12-
<name>Display &amp; Video 360 API v1-rev20231105-2.0.0</name>
11+
<version>v1-rev20231113-2.0.0</version>
12+
<name>Display &amp; Video 360 API v1-rev20231113-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-displayvideo/v1/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>v1-rev20231105-2.0.0</version>
25+
<version>v1-rev20231113-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:v1-rev20231105-2.0.0'
38+
implementation 'com.google.apis:google-api-services-displayvideo:v1-rev20231113-2.0.0'
3939
}
4040
```
4141

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-rev20231105-2.0.0</version>
25+
<version>v2-rev20231113-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-rev20231105-2.0.0'
38+
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20231113-2.0.0'
3939
}
4040
```
4141

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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+
* User consent status.
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 Consent extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Represents consent for ad personalization.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String adPersonalization;
39+
40+
/**
41+
* Represents consent for ad user data.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String adUserData;
46+
47+
/**
48+
* Represents consent for ad personalization.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getAdPersonalization() {
52+
return adPersonalization;
53+
}
54+
55+
/**
56+
* Represents consent for ad personalization.
57+
* @param adPersonalization adPersonalization or {@code null} for none
58+
*/
59+
public Consent setAdPersonalization(java.lang.String adPersonalization) {
60+
this.adPersonalization = adPersonalization;
61+
return this;
62+
}
63+
64+
/**
65+
* Represents consent for ad user data.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getAdUserData() {
69+
return adUserData;
70+
}
71+
72+
/**
73+
* Represents consent for ad user data.
74+
* @param adUserData adUserData or {@code null} for none
75+
*/
76+
public Consent setAdUserData(java.lang.String adUserData) {
77+
this.adUserData = adUserData;
78+
return this;
79+
}
80+
81+
@Override
82+
public Consent set(String fieldName, Object value) {
83+
return (Consent) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public Consent clone() {
88+
return (Consent) super.clone();
89+
}
90+
91+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
@SuppressWarnings("javadoc")
3131
public final class ContactInfoList extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Input only. User consent status.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private Consent consent;
39+
3340
/**
3441
* A list of ContactInfo objects defining Customer Match audience members. The size of members
3542
* after splitting the contact_infos mustn't be greater than 500,000.
@@ -44,6 +51,23 @@ public final class ContactInfoList extends com.google.api.client.json.GenericJso
4451
com.google.api.client.util.Data.nullOf(ContactInfo.class);
4552
}
4653

54+
/**
55+
* Input only. User consent status.
56+
* @return value or {@code null} for none
57+
*/
58+
public Consent getConsent() {
59+
return consent;
60+
}
61+
62+
/**
63+
* Input only. User consent status.
64+
* @param consent consent or {@code null} for none
65+
*/
66+
public ContactInfoList setConsent(Consent consent) {
67+
this.consent = consent;
68+
return this;
69+
}
70+
4771
/**
4872
* A list of ContactInfo objects defining Customer Match audience members. The size of members
4973
* after splitting the contact_infos mustn't be greater than 500,000.

0 commit comments

Comments
 (0)