Skip to content

Commit d16fdb3

Browse files
1 parent 83644f1 commit d16fdb3

File tree

5 files changed

+35
-11
lines changed

5 files changed

+35
-11
lines changed

clients/google-api-services-youtube/v3/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-youtube</artifactId>
25-
<version>v3-rev20240514-2.0.0</version>
25+
<version>v3-rev20240814-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-youtube:v3-rev20240514-2.0.0'
38+
implementation 'com.google.apis:google-api-services-youtube:v3-rev20240814-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/YouTube.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7713,7 +7713,7 @@ public Insert set(String parameterName, Object value) {
77137713
*
77147714
* @param liveChatId The id of the live chat for which comments should be returned.
77157715
* @param part The *part* parameter specifies the liveChatComment resource parts that the API response will
7716-
* include. Supported values are id and snippet.
7716+
* include. Supported values are id, snippet, and authorDetails.
77177717
* @return the request
77187718
*/
77197719
public List list(java.lang.String liveChatId, java.util.List<java.lang.String> part) throws java.io.IOException {
@@ -7738,7 +7738,7 @@ public class List extends YouTubeRequest<com.google.api.services.youtube.model.L
77387738
*
77397739
* @param liveChatId The id of the live chat for which comments should be returned.
77407740
* @param part The *part* parameter specifies the liveChatComment resource parts that the API response will
7741-
* include. Supported values are id and snippet.
7741+
* include. Supported values are id, snippet, and authorDetails.
77427742
* @since 1.13
77437743
*/
77447744
protected List(java.lang.String liveChatId, java.util.List<java.lang.String> part) {
@@ -7830,21 +7830,21 @@ public List setLiveChatId(java.lang.String liveChatId) {
78307830

78317831
/**
78327832
* The *part* parameter specifies the liveChatComment resource parts that the API response
7833-
* will include. Supported values are id and snippet.
7833+
* will include. Supported values are id, snippet, and authorDetails.
78347834
*/
78357835
@com.google.api.client.util.Key
78367836
private java.util.List<java.lang.String> part;
78377837

78387838
/** The *part* parameter specifies the liveChatComment resource parts that the API response will
7839-
include. Supported values are id and snippet.
7839+
include. Supported values are id, snippet, and authorDetails.
78407840
*/
78417841
public java.util.List<java.lang.String> getPart() {
78427842
return part;
78437843
}
78447844

78457845
/**
78467846
* The *part* parameter specifies the liveChatComment resource parts that the API response
7847-
* will include. Supported values are id and snippet.
7847+
* will include. Supported values are id, snippet, and authorDetails.
78487848
*/
78497849
public List setPart(java.util.List<java.lang.String> part) {
78507850
this.part = part;

clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/PlaylistStatus.java

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

32+
/**
33+
* The playlist's podcast status.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String podcastStatus;
38+
3239
/**
3340
* The playlist's privacy status.
3441
* The value may be {@code null}.
3542
*/
3643
@com.google.api.client.util.Key
3744
private java.lang.String privacyStatus;
3845

46+
/**
47+
* The playlist's podcast status.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getPodcastStatus() {
51+
return podcastStatus;
52+
}
53+
54+
/**
55+
* The playlist's podcast status.
56+
* @param podcastStatus podcastStatus or {@code null} for none
57+
*/
58+
public PlaylistStatus setPodcastStatus(java.lang.String podcastStatus) {
59+
this.podcastStatus = podcastStatus;
60+
return this;
61+
}
62+
3963
/**
4064
* The playlist's privacy status.
4165
* @return value or {@code null} for none

clients/google-api-services-youtube/v3/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-youtube</artifactId>
11-
<version>v3-rev20240514-2.0.0</version>
12-
<name>YouTube Data API v3 v3-rev20240514-2.0.0</name>
11+
<version>v3-rev20240814-2.0.0</version>
12+
<name>YouTube Data API v3 v3-rev20240814-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-youtube/v3/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-youtube</artifactId>
25-
<version>v3-rev20240514-2.0.0</version>
25+
<version>v3-rev20240814-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-youtube:v3-rev20240514-2.0.0'
38+
implementation 'com.google.apis:google-api-services-youtube:v3-rev20240814-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)