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-youtube/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-youtube</artifactId>
<version>v3-rev20260805-2.0.0</version>
<version>v3-rev20260810-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-youtube:v3-rev20260805-2.0.0'
implementation 'com.google.apis:google-api-services-youtube:v3-rev20260810-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
package com.google.api.services.youtube.model;

/**
* An *activity* resource contains information about an action that a particular channel, or user,
* has taken on YouTube.The actions reported in activity feeds include rating a video, sharing a
* video, marking a video as a favorite, commenting on a video, uploading a video, and so forth.
* Each activity resource identifies the type of action, the channel associated with the action, and
* the resource(s) associated with the action, such as the video that was rated or uploaded.
* An `activity` resource contains information about an action that a particular channel, or user,
* has taken on YouTube. The actions reported in activity feeds include sharing a video, uploading a
* video, and so forth. Each `activity` resource identifies the type of action, the channel
* associated with the action, and the resource(s) associated with the action, such as the video
* that was rated or uploaded.
*
* <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 YouTube Data API v3. For a detailed explanation see:
Expand All @@ -34,9 +34,9 @@
public final class Activity extends com.google.api.client.json.GenericJson {

/**
* The contentDetails object contains information about the content associated with the activity.
* For example, if the snippet.type value is videoRated, then the contentDetails object's content
* identifies the rated video.
* The `contentDetails` object contains information about the content associated with the
* activity. For example, if the `snippet.type` value is `videoRated`, then the `contentDetails`
* object's content identifies the rated video.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -57,34 +57,34 @@ public final class Activity extends com.google.api.client.json.GenericJson {
private java.lang.String id;

/**
* Identifies what kind of resource this is. Value: the fixed string "youtube#activity".
* Identifies what kind of resource this is. Value: The fixed string `"youtube#activity"`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String kind;

/**
* The snippet object contains basic details about the activity, including the activity's type and
* group ID.
* The `snippet` object contains basic details about the activity, including the activity's type
* and group ID.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ActivitySnippet snippet;

/**
* The contentDetails object contains information about the content associated with the activity.
* For example, if the snippet.type value is videoRated, then the contentDetails object's content
* identifies the rated video.
* The `contentDetails` object contains information about the content associated with the
* activity. For example, if the `snippet.type` value is `videoRated`, then the `contentDetails`
* object's content identifies the rated video.
* @return value or {@code null} for none
*/
public ActivityContentDetails getContentDetails() {
return contentDetails;
}

/**
* The contentDetails object contains information about the content associated with the activity.
* For example, if the snippet.type value is videoRated, then the contentDetails object's content
* identifies the rated video.
* The `contentDetails` object contains information about the content associated with the
* activity. For example, if the `snippet.type` value is `videoRated`, then the `contentDetails`
* object's content identifies the rated video.
* @param contentDetails contentDetails or {@code null} for none
*/
public Activity setContentDetails(ActivityContentDetails contentDetails) {
Expand Down Expand Up @@ -127,15 +127,15 @@ public Activity setId(java.lang.String id) {
}

/**
* Identifies what kind of resource this is. Value: the fixed string "youtube#activity".
* Identifies what kind of resource this is. Value: The fixed string `"youtube#activity"`.
* @return value or {@code null} for none
*/
public java.lang.String getKind() {
return kind;
}

/**
* Identifies what kind of resource this is. Value: the fixed string "youtube#activity".
* Identifies what kind of resource this is. Value: The fixed string `"youtube#activity"`.
* @param kind kind or {@code null} for none
*/
public Activity setKind(java.lang.String kind) {
Expand All @@ -144,17 +144,17 @@ public Activity setKind(java.lang.String kind) {
}

/**
* The snippet object contains basic details about the activity, including the activity's type and
* group ID.
* The `snippet` object contains basic details about the activity, including the activity's type
* and group ID.
* @return value or {@code null} for none
*/
public ActivitySnippet getSnippet() {
return snippet;
}

/**
* The snippet object contains basic details about the activity, including the activity's type and
* group ID.
* The `snippet` object contains basic details about the activity, including the activity's type
* and group ID.
* @param snippet snippet or {@code null} for none
*/
public Activity setSnippet(ActivitySnippet snippet) {
Expand Down
Loading
Loading