diff --git a/clients/google-api-services-youtube/v3/2.0.0/README.md b/clients/google-api-services-youtube/v3/2.0.0/README.md index a458a357892..84110e784fb 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/README.md +++ b/clients/google-api-services-youtube/v3/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-youtube - v3-rev20260805-2.0.0 + v3-rev20260810-2.0.0 @@ -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' } ``` diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/Activity.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/Activity.java index 2dbb141621f..eee340361a2 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/Activity.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/Activity.java @@ -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. * *

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: @@ -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 @@ -57,24 +57,24 @@ 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() { @@ -82,9 +82,9 @@ public ActivityContentDetails getContentDetails() { } /** - * 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) { @@ -127,7 +127,7 @@ 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() { @@ -135,7 +135,7 @@ public java.lang.String getKind() { } /** - * 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) { @@ -144,8 +144,8 @@ 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() { @@ -153,8 +153,8 @@ public ActivitySnippet getSnippet() { } /** - * 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) { diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetails.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetails.java index 75fc2b27289..49c0a9e84c1 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetails.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetails.java @@ -31,96 +31,99 @@ public final class ActivityContentDetails extends com.google.api.client.json.GenericJson { /** - * The bulletin object contains details about a channel bulletin post. This object is only present - * if the snippet.type is bulletin. + * The `bulletin` object contains details about a channel bulletin post. This object is only + * present if the `snippet.type` is `bulletin`. * The value may be {@code null}. */ @com.google.api.client.util.Key private ActivityContentDetailsBulletin bulletin; /** - * The channelItem object contains details about a resource which was added to a channel. This - * property is only present if the snippet.type is channelItem. + * The `channelItem` object contains details about a resource which was added to a channel. This + * property is only present if the `snippet.type` is `channelItem`. * The value may be {@code null}. */ @com.google.api.client.util.Key private ActivityContentDetailsChannelItem channelItem; /** - * The comment object contains information about a resource that received a comment. This property - * is only present if the snippet.type is comment. + * The `comment` object contains information about a resource that received a comment. This + * property is only present if the `snippet.type` is `comment`. * The value may be {@code null}. */ @com.google.api.client.util.Key private ActivityContentDetailsComment comment; /** - * The favorite object contains information about a video that was marked as a favorite video. - * This property is only present if the snippet.type is favorite. + * The `favorite` object contains information about a video that was marked as a favorite video. + * This property is only present if the `snippet.type` is `favorite`. Deprecated: This property is + * no longer returned. * The value may be {@code null}. */ @com.google.api.client.util.Key private ActivityContentDetailsFavorite favorite; /** - * The like object contains information about a resource that received a positive (like) rating. - * This property is only present if the snippet.type is like. + * The `like` object contains information about a resource that received a positive (like) rating. + * This property is only present if the `snippet.type` is `like`. Deprecated: This property is no + * longer returned. * The value may be {@code null}. */ @com.google.api.client.util.Key private ActivityContentDetailsLike like; /** - * The playlistItem object contains information about a new playlist item. This property is only - * present if the snippet.type is playlistItem. + * The `playlistItem` object contains information about a new playlist item. This property is only + * present if the `snippet.type` is `playlistItem`. * The value may be {@code null}. */ @com.google.api.client.util.Key private ActivityContentDetailsPlaylistItem playlistItem; /** - * The promotedItem object contains details about a resource which is being promoted. This - * property is only present if the snippet.type is promotedItem. + * The `promotedItem` object contains details about a resource which is being promoted. This + * property is only present if the `snippet.type` is `promotedItem`. * The value may be {@code null}. */ @com.google.api.client.util.Key private ActivityContentDetailsPromotedItem promotedItem; /** - * The recommendation object contains information about a recommended resource. This property is - * only present if the snippet.type is recommendation. + * The `recommendation` object contains information about a recommended resource. This property is + * only present if the `snippet.type` is `recommendation`. * The value may be {@code null}. */ @com.google.api.client.util.Key private ActivityContentDetailsRecommendation recommendation; /** - * The social object contains details about a social network post. This property is only present - * if the snippet.type is social. + * The `social` object contains details about a social network post. This property is only present + * if the `snippet.type` is `social`. * The value may be {@code null}. */ @com.google.api.client.util.Key private ActivityContentDetailsSocial social; /** - * The subscription object contains information about a channel that a user subscribed to. This - * property is only present if the snippet.type is subscription. + * The `subscription` object contains information about a channel that a user subscribed to. This + * property is only present if the `snippet.type` is `subscription`. Deprecated: This property is + * no longer returned. * The value may be {@code null}. */ @com.google.api.client.util.Key private ActivityContentDetailsSubscription subscription; /** - * The upload object contains information about the uploaded video. This property is only present - * if the snippet.type is upload. + * The `upload` object contains information about the uploaded video. This property is only + * present if the `snippet.type` is `upload`. * The value may be {@code null}. */ @com.google.api.client.util.Key private ActivityContentDetailsUpload upload; /** - * The bulletin object contains details about a channel bulletin post. This object is only present - * if the snippet.type is bulletin. + * The `bulletin` object contains details about a channel bulletin post. This object is only + * present if the `snippet.type` is `bulletin`. * @return value or {@code null} for none */ public ActivityContentDetailsBulletin getBulletin() { @@ -128,8 +131,8 @@ public ActivityContentDetailsBulletin getBulletin() { } /** - * The bulletin object contains details about a channel bulletin post. This object is only present - * if the snippet.type is bulletin. + * The `bulletin` object contains details about a channel bulletin post. This object is only + * present if the `snippet.type` is `bulletin`. * @param bulletin bulletin or {@code null} for none */ public ActivityContentDetails setBulletin(ActivityContentDetailsBulletin bulletin) { @@ -138,8 +141,8 @@ public ActivityContentDetails setBulletin(ActivityContentDetailsBulletin bulleti } /** - * The channelItem object contains details about a resource which was added to a channel. This - * property is only present if the snippet.type is channelItem. + * The `channelItem` object contains details about a resource which was added to a channel. This + * property is only present if the `snippet.type` is `channelItem`. * @return value or {@code null} for none */ public ActivityContentDetailsChannelItem getChannelItem() { @@ -147,8 +150,8 @@ public ActivityContentDetailsChannelItem getChannelItem() { } /** - * The channelItem object contains details about a resource which was added to a channel. This - * property is only present if the snippet.type is channelItem. + * The `channelItem` object contains details about a resource which was added to a channel. This + * property is only present if the `snippet.type` is `channelItem`. * @param channelItem channelItem or {@code null} for none */ public ActivityContentDetails setChannelItem(ActivityContentDetailsChannelItem channelItem) { @@ -157,8 +160,8 @@ public ActivityContentDetails setChannelItem(ActivityContentDetailsChannelItem c } /** - * The comment object contains information about a resource that received a comment. This property - * is only present if the snippet.type is comment. + * The `comment` object contains information about a resource that received a comment. This + * property is only present if the `snippet.type` is `comment`. * @return value or {@code null} for none */ public ActivityContentDetailsComment getComment() { @@ -166,8 +169,8 @@ public ActivityContentDetailsComment getComment() { } /** - * The comment object contains information about a resource that received a comment. This property - * is only present if the snippet.type is comment. + * The `comment` object contains information about a resource that received a comment. This + * property is only present if the `snippet.type` is `comment`. * @param comment comment or {@code null} for none */ public ActivityContentDetails setComment(ActivityContentDetailsComment comment) { @@ -176,8 +179,9 @@ public ActivityContentDetails setComment(ActivityContentDetailsComment comment) } /** - * The favorite object contains information about a video that was marked as a favorite video. - * This property is only present if the snippet.type is favorite. + * The `favorite` object contains information about a video that was marked as a favorite video. + * This property is only present if the `snippet.type` is `favorite`. Deprecated: This property is + * no longer returned. * @return value or {@code null} for none */ public ActivityContentDetailsFavorite getFavorite() { @@ -185,8 +189,9 @@ public ActivityContentDetailsFavorite getFavorite() { } /** - * The favorite object contains information about a video that was marked as a favorite video. - * This property is only present if the snippet.type is favorite. + * The `favorite` object contains information about a video that was marked as a favorite video. + * This property is only present if the `snippet.type` is `favorite`. Deprecated: This property is + * no longer returned. * @param favorite favorite or {@code null} for none */ public ActivityContentDetails setFavorite(ActivityContentDetailsFavorite favorite) { @@ -195,8 +200,9 @@ public ActivityContentDetails setFavorite(ActivityContentDetailsFavorite favorit } /** - * The like object contains information about a resource that received a positive (like) rating. - * This property is only present if the snippet.type is like. + * The `like` object contains information about a resource that received a positive (like) rating. + * This property is only present if the `snippet.type` is `like`. Deprecated: This property is no + * longer returned. * @return value or {@code null} for none */ public ActivityContentDetailsLike getLike() { @@ -204,8 +210,9 @@ public ActivityContentDetailsLike getLike() { } /** - * The like object contains information about a resource that received a positive (like) rating. - * This property is only present if the snippet.type is like. + * The `like` object contains information about a resource that received a positive (like) rating. + * This property is only present if the `snippet.type` is `like`. Deprecated: This property is no + * longer returned. * @param like like or {@code null} for none */ public ActivityContentDetails setLike(ActivityContentDetailsLike like) { @@ -214,8 +221,8 @@ public ActivityContentDetails setLike(ActivityContentDetailsLike like) { } /** - * The playlistItem object contains information about a new playlist item. This property is only - * present if the snippet.type is playlistItem. + * The `playlistItem` object contains information about a new playlist item. This property is only + * present if the `snippet.type` is `playlistItem`. * @return value or {@code null} for none */ public ActivityContentDetailsPlaylistItem getPlaylistItem() { @@ -223,8 +230,8 @@ public ActivityContentDetailsPlaylistItem getPlaylistItem() { } /** - * The playlistItem object contains information about a new playlist item. This property is only - * present if the snippet.type is playlistItem. + * The `playlistItem` object contains information about a new playlist item. This property is only + * present if the `snippet.type` is `playlistItem`. * @param playlistItem playlistItem or {@code null} for none */ public ActivityContentDetails setPlaylistItem(ActivityContentDetailsPlaylistItem playlistItem) { @@ -233,8 +240,8 @@ public ActivityContentDetails setPlaylistItem(ActivityContentDetailsPlaylistItem } /** - * The promotedItem object contains details about a resource which is being promoted. This - * property is only present if the snippet.type is promotedItem. + * The `promotedItem` object contains details about a resource which is being promoted. This + * property is only present if the `snippet.type` is `promotedItem`. * @return value or {@code null} for none */ public ActivityContentDetailsPromotedItem getPromotedItem() { @@ -242,8 +249,8 @@ public ActivityContentDetailsPromotedItem getPromotedItem() { } /** - * The promotedItem object contains details about a resource which is being promoted. This - * property is only present if the snippet.type is promotedItem. + * The `promotedItem` object contains details about a resource which is being promoted. This + * property is only present if the `snippet.type` is `promotedItem`. * @param promotedItem promotedItem or {@code null} for none */ public ActivityContentDetails setPromotedItem(ActivityContentDetailsPromotedItem promotedItem) { @@ -252,8 +259,8 @@ public ActivityContentDetails setPromotedItem(ActivityContentDetailsPromotedItem } /** - * The recommendation object contains information about a recommended resource. This property is - * only present if the snippet.type is recommendation. + * The `recommendation` object contains information about a recommended resource. This property is + * only present if the `snippet.type` is `recommendation`. * @return value or {@code null} for none */ public ActivityContentDetailsRecommendation getRecommendation() { @@ -261,8 +268,8 @@ public ActivityContentDetailsRecommendation getRecommendation() { } /** - * The recommendation object contains information about a recommended resource. This property is - * only present if the snippet.type is recommendation. + * The `recommendation` object contains information about a recommended resource. This property is + * only present if the `snippet.type` is `recommendation`. * @param recommendation recommendation or {@code null} for none */ public ActivityContentDetails setRecommendation(ActivityContentDetailsRecommendation recommendation) { @@ -271,8 +278,8 @@ public ActivityContentDetails setRecommendation(ActivityContentDetailsRecommenda } /** - * The social object contains details about a social network post. This property is only present - * if the snippet.type is social. + * The `social` object contains details about a social network post. This property is only present + * if the `snippet.type` is `social`. * @return value or {@code null} for none */ public ActivityContentDetailsSocial getSocial() { @@ -280,8 +287,8 @@ public ActivityContentDetailsSocial getSocial() { } /** - * The social object contains details about a social network post. This property is only present - * if the snippet.type is social. + * The `social` object contains details about a social network post. This property is only present + * if the `snippet.type` is `social`. * @param social social or {@code null} for none */ public ActivityContentDetails setSocial(ActivityContentDetailsSocial social) { @@ -290,8 +297,9 @@ public ActivityContentDetails setSocial(ActivityContentDetailsSocial social) { } /** - * The subscription object contains information about a channel that a user subscribed to. This - * property is only present if the snippet.type is subscription. + * The `subscription` object contains information about a channel that a user subscribed to. This + * property is only present if the `snippet.type` is `subscription`. Deprecated: This property is + * no longer returned. * @return value or {@code null} for none */ public ActivityContentDetailsSubscription getSubscription() { @@ -299,8 +307,9 @@ public ActivityContentDetailsSubscription getSubscription() { } /** - * The subscription object contains information about a channel that a user subscribed to. This - * property is only present if the snippet.type is subscription. + * The `subscription` object contains information about a channel that a user subscribed to. This + * property is only present if the `snippet.type` is `subscription`. Deprecated: This property is + * no longer returned. * @param subscription subscription or {@code null} for none */ public ActivityContentDetails setSubscription(ActivityContentDetailsSubscription subscription) { @@ -309,8 +318,8 @@ public ActivityContentDetails setSubscription(ActivityContentDetailsSubscription } /** - * The upload object contains information about the uploaded video. This property is only present - * if the snippet.type is upload. + * The `upload` object contains information about the uploaded video. This property is only + * present if the `snippet.type` is `upload`. * @return value or {@code null} for none */ public ActivityContentDetailsUpload getUpload() { @@ -318,8 +327,8 @@ public ActivityContentDetailsUpload getUpload() { } /** - * The upload object contains information about the uploaded video. This property is only present - * if the snippet.type is upload. + * The `upload` object contains information about the uploaded video. This property is only + * present if the `snippet.type` is `upload`. * @param upload upload or {@code null} for none */ public ActivityContentDetails setUpload(ActivityContentDetailsUpload upload) { diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsBulletin.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsBulletin.java index 2cea1f7748d..5a821410366 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsBulletin.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsBulletin.java @@ -30,7 +30,7 @@ public final class ActivityContentDetailsBulletin extends com.google.api.client.json.GenericJson { /** - * The resourceId object contains information that identifies the resource associated with a + * The `resourceId` object contains information that identifies the resource associated with a * bulletin post. @mutable youtube.activities.insert * The value may be {@code null}. */ @@ -38,7 +38,7 @@ public final class ActivityContentDetailsBulletin extends com.google.api.client. private ResourceId resourceId; /** - * The resourceId object contains information that identifies the resource associated with a + * The `resourceId` object contains information that identifies the resource associated with a * bulletin post. @mutable youtube.activities.insert * @return value or {@code null} for none */ @@ -47,7 +47,7 @@ public ResourceId getResourceId() { } /** - * The resourceId object contains information that identifies the resource associated with a + * The `resourceId` object contains information that identifies the resource associated with a * bulletin post. @mutable youtube.activities.insert * @param resourceId resourceId or {@code null} for none */ diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsChannelItem.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsChannelItem.java index 96ed236f6de..8314d895a21 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsChannelItem.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsChannelItem.java @@ -30,7 +30,7 @@ public final class ActivityContentDetailsChannelItem extends com.google.api.client.json.GenericJson { /** - * The resourceId object contains information that identifies the resource that was added to the + * The `resourceId` object contains information that identifies the resource that was added to the * channel. * The value may be {@code null}. */ @@ -38,7 +38,7 @@ public final class ActivityContentDetailsChannelItem extends com.google.api.clie private ResourceId resourceId; /** - * The resourceId object contains information that identifies the resource that was added to the + * The `resourceId` object contains information that identifies the resource that was added to the * channel. * @return value or {@code null} for none */ @@ -47,7 +47,7 @@ public ResourceId getResourceId() { } /** - * The resourceId object contains information that identifies the resource that was added to the + * The `resourceId` object contains information that identifies the resource that was added to the * channel. * @param resourceId resourceId or {@code null} for none */ diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsComment.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsComment.java index a47395cca73..3d429c29119 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsComment.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsComment.java @@ -30,7 +30,7 @@ public final class ActivityContentDetailsComment extends com.google.api.client.json.GenericJson { /** - * The resourceId object contains information that identifies the resource associated with the + * The `resourceId` object contains information that identifies the resource associated with the * comment. * The value may be {@code null}. */ @@ -38,7 +38,7 @@ public final class ActivityContentDetailsComment extends com.google.api.client.j private ResourceId resourceId; /** - * The resourceId object contains information that identifies the resource associated with the + * The `resourceId` object contains information that identifies the resource associated with the * comment. * @return value or {@code null} for none */ @@ -47,7 +47,7 @@ public ResourceId getResourceId() { } /** - * The resourceId object contains information that identifies the resource associated with the + * The `resourceId` object contains information that identifies the resource associated with the * comment. * @param resourceId resourceId or {@code null} for none */ diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsFavorite.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsFavorite.java index 7d97c519e9a..4d4a9b9298d 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsFavorite.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsFavorite.java @@ -17,7 +17,8 @@ package com.google.api.services.youtube.model; /** - * Information about a video that was marked as a favorite video. + * Information about a video that was marked as a favorite video. Deprecated: This resource is no + * longer returned. * *

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: @@ -30,7 +31,7 @@ public final class ActivityContentDetailsFavorite extends com.google.api.client.json.GenericJson { /** - * The resourceId object contains information that identifies the resource that was marked as a + * The `resourceId` object contains information that identifies the resource that was marked as a * favorite. * The value may be {@code null}. */ @@ -38,7 +39,7 @@ public final class ActivityContentDetailsFavorite extends com.google.api.client. private ResourceId resourceId; /** - * The resourceId object contains information that identifies the resource that was marked as a + * The `resourceId` object contains information that identifies the resource that was marked as a * favorite. * @return value or {@code null} for none */ @@ -47,7 +48,7 @@ public ResourceId getResourceId() { } /** - * The resourceId object contains information that identifies the resource that was marked as a + * The `resourceId` object contains information that identifies the resource that was marked as a * favorite. * @param resourceId resourceId or {@code null} for none */ diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsLike.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsLike.java index c88603d967a..0e0da533b50 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsLike.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsLike.java @@ -17,7 +17,8 @@ package com.google.api.services.youtube.model; /** - * Information about a resource that received a positive (like) rating. + * Information about a resource that received a positive (like) rating. Deprecated: This resource is + * no longer returned. * *

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: @@ -30,14 +31,14 @@ public final class ActivityContentDetailsLike extends com.google.api.client.json.GenericJson { /** - * The resourceId object contains information that identifies the rated resource. + * The `resourceId` object contains information that identifies the rated resource. * The value may be {@code null}. */ @com.google.api.client.util.Key private ResourceId resourceId; /** - * The resourceId object contains information that identifies the rated resource. + * The `resourceId` object contains information that identifies the rated resource. * @return value or {@code null} for none */ public ResourceId getResourceId() { @@ -45,7 +46,7 @@ public ResourceId getResourceId() { } /** - * The resourceId object contains information that identifies the rated resource. + * The `resourceId` object contains information that identifies the rated resource. * @param resourceId resourceId or {@code null} for none */ public ActivityContentDetailsLike setResourceId(ResourceId resourceId) { diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsPlaylistItem.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsPlaylistItem.java index cf73d86e282..2d98f94f51e 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsPlaylistItem.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsPlaylistItem.java @@ -44,7 +44,7 @@ public final class ActivityContentDetailsPlaylistItem extends com.google.api.cli private java.lang.String playlistItemId; /** - * The resourceId object contains information about the resource that was added to the playlist. + * The `resourceId` object contains information about the resource that was added to the playlist. * The value may be {@code null}. */ @com.google.api.client.util.Key @@ -85,7 +85,7 @@ public ActivityContentDetailsPlaylistItem setPlaylistItemId(java.lang.String pla } /** - * The resourceId object contains information about the resource that was added to the playlist. + * The `resourceId` object contains information about the resource that was added to the playlist. * @return value or {@code null} for none */ public ResourceId getResourceId() { @@ -93,7 +93,7 @@ public ResourceId getResourceId() { } /** - * The resourceId object contains information about the resource that was added to the playlist. + * The `resourceId` object contains information about the resource that was added to the playlist. * @param resourceId resourceId or {@code null} for none */ public ActivityContentDetailsPlaylistItem setResourceId(ResourceId resourceId) { diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsRecommendation.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsRecommendation.java index 1b8cdd1f403..7e32dd48ca2 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsRecommendation.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsRecommendation.java @@ -37,14 +37,14 @@ public final class ActivityContentDetailsRecommendation extends com.google.api.c private java.lang.String reason; /** - * The resourceId object contains information that identifies the recommended resource. + * The `resourceId` object contains information that identifies the recommended resource. * The value may be {@code null}. */ @com.google.api.client.util.Key private ResourceId resourceId; /** - * The seedResourceId object contains information about the resource that caused the + * The `seedResourceId` object contains information about the resource that caused the * recommendation. * The value may be {@code null}. */ @@ -69,7 +69,7 @@ public ActivityContentDetailsRecommendation setReason(java.lang.String reason) { } /** - * The resourceId object contains information that identifies the recommended resource. + * The `resourceId` object contains information that identifies the recommended resource. * @return value or {@code null} for none */ public ResourceId getResourceId() { @@ -77,7 +77,7 @@ public ResourceId getResourceId() { } /** - * The resourceId object contains information that identifies the recommended resource. + * The `resourceId` object contains information that identifies the recommended resource. * @param resourceId resourceId or {@code null} for none */ public ActivityContentDetailsRecommendation setResourceId(ResourceId resourceId) { @@ -86,7 +86,7 @@ public ActivityContentDetailsRecommendation setResourceId(ResourceId resourceId) } /** - * The seedResourceId object contains information about the resource that caused the + * The `seedResourceId` object contains information about the resource that caused the * recommendation. * @return value or {@code null} for none */ @@ -95,7 +95,7 @@ public ResourceId getSeedResourceId() { } /** - * The seedResourceId object contains information about the resource that caused the + * The `seedResourceId` object contains information about the resource that caused the * recommendation. * @param seedResourceId seedResourceId or {@code null} for none */ diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsSocial.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsSocial.java index 3d287961b26..a0e5c2edbdf 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsSocial.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsSocial.java @@ -51,7 +51,7 @@ public final class ActivityContentDetailsSocial extends com.google.api.client.js private java.lang.String referenceUrl; /** - * The resourceId object encapsulates information that identifies the resource associated with a + * The `resourceId` object encapsulates information that identifies the resource associated with a * social network post. * The value may be {@code null}. */ @@ -117,7 +117,7 @@ public ActivityContentDetailsSocial setReferenceUrl(java.lang.String referenceUr } /** - * The resourceId object encapsulates information that identifies the resource associated with a + * The `resourceId` object encapsulates information that identifies the resource associated with a * social network post. * @return value or {@code null} for none */ @@ -126,7 +126,7 @@ public ResourceId getResourceId() { } /** - * The resourceId object encapsulates information that identifies the resource associated with a + * The `resourceId` object encapsulates information that identifies the resource associated with a * social network post. * @param resourceId resourceId or {@code null} for none */ diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsSubscription.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsSubscription.java index 38ed3c5f96c..9b11802eecf 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsSubscription.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivityContentDetailsSubscription.java @@ -17,7 +17,8 @@ package com.google.api.services.youtube.model; /** - * Information about a channel that a user subscribed to. + * Information about a channel that a user subscribed to. Deprecated: This resource is no longer + * returned. * *

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: @@ -30,7 +31,7 @@ public final class ActivityContentDetailsSubscription extends com.google.api.client.json.GenericJson { /** - * The resourceId object contains information that identifies the resource that the user + * The `resourceId` object contains information that identifies the resource that the user * subscribed to. * The value may be {@code null}. */ @@ -38,7 +39,7 @@ public final class ActivityContentDetailsSubscription extends com.google.api.cli private ResourceId resourceId; /** - * The resourceId object contains information that identifies the resource that the user + * The `resourceId` object contains information that identifies the resource that the user * subscribed to. * @return value or {@code null} for none */ @@ -47,7 +48,7 @@ public ResourceId getResourceId() { } /** - * The resourceId object contains information that identifies the resource that the user + * The `resourceId` object contains information that identifies the resource that the user * subscribed to. * @param resourceId resourceId or {@code null} for none */ diff --git a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivitySnippet.java b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivitySnippet.java index 11f953767d8..d47d6e92c2b 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivitySnippet.java +++ b/clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/ActivitySnippet.java @@ -54,10 +54,10 @@ public final class ActivitySnippet extends com.google.api.client.json.GenericJso /** * The group ID associated with the activity. A group ID identifies user events that are - * associated with the same user and resource. For example, if a user rates a video and marks the - * same video as a favorite, the entries for those events would have the same group ID in the - * user's activity feed. In your user interface, you can avoid repetition by grouping events with - * the same groupId value. + * associated with the same user and resource. For example, if a user uploads a video and watches + * the same video, the entries for those events would have the same group ID in the user's + * activity feed. In your user interface, you can avoid repetition by grouping events with the + * same `groupId` value. * The value may be {@code null}. */ @com.google.api.client.util.Key @@ -148,10 +148,10 @@ public ActivitySnippet setDescription(java.lang.String description) { /** * The group ID associated with the activity. A group ID identifies user events that are - * associated with the same user and resource. For example, if a user rates a video and marks the - * same video as a favorite, the entries for those events would have the same group ID in the - * user's activity feed. In your user interface, you can avoid repetition by grouping events with - * the same groupId value. + * associated with the same user and resource. For example, if a user uploads a video and watches + * the same video, the entries for those events would have the same group ID in the user's + * activity feed. In your user interface, you can avoid repetition by grouping events with the + * same `groupId` value. * @return value or {@code null} for none */ public java.lang.String getGroupId() { @@ -160,10 +160,10 @@ public java.lang.String getGroupId() { /** * The group ID associated with the activity. A group ID identifies user events that are - * associated with the same user and resource. For example, if a user rates a video and marks the - * same video as a favorite, the entries for those events would have the same group ID in the - * user's activity feed. In your user interface, you can avoid repetition by grouping events with - * the same groupId value. + * associated with the same user and resource. For example, if a user uploads a video and watches + * the same video, the entries for those events would have the same group ID in the user's + * activity feed. In your user interface, you can avoid repetition by grouping events with the + * same `groupId` value. * @param groupId groupId or {@code null} for none */ public ActivitySnippet setGroupId(java.lang.String groupId) { diff --git a/clients/google-api-services-youtube/v3/2.0.0/pom.xml b/clients/google-api-services-youtube/v3/2.0.0/pom.xml index 5ba788bde32..8ff720051a7 100644 --- a/clients/google-api-services-youtube/v3/2.0.0/pom.xml +++ b/clients/google-api-services-youtube/v3/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-youtube - v3-rev20260805-2.0.0 - YouTube Data API v3 v3-rev20260805-2.0.0 + v3-rev20260810-2.0.0 + YouTube Data API v3 v3-rev20260810-2.0.0 jar 2011 diff --git a/clients/google-api-services-youtube/v3/README.md b/clients/google-api-services-youtube/v3/README.md index a458a357892..84110e784fb 100644 --- a/clients/google-api-services-youtube/v3/README.md +++ b/clients/google-api-services-youtube/v3/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-youtube - v3-rev20260805-2.0.0 + v3-rev20260810-2.0.0 @@ -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' } ```