All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.youtube.model.PlaylistItemContentDetails Maven / Gradle / Ivy

There is a newer version: v3-rev20240514-2.0.0
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
/*
 * This code was generated by https://github.com/googleapis/google-api-java-client-services/
 * Modify at your own risk.
 */

package com.google.api.services.youtube.model;

/**
 * Model definition for PlaylistItemContentDetails.
 *
 * 

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: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class PlaylistItemContentDetails extends com.google.api.client.json.GenericJson { /** * The time, measured in seconds from the start of the video, when the video should stop playing. * (The playlist owner can specify the times when the video should start and stop playing when the * video is played in the context of the playlist.) By default, assume that the video.endTime is * the end of the video. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String endAt; /** * A user-generated note for this item. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String note; /** * The time, measured in seconds from the start of the video, when the video should start playing. * (The playlist owner can specify the times when the video should start and stop playing when the * video is played in the context of the playlist.) The default value is 0. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String startAt; /** * The ID that YouTube uses to uniquely identify a video. To retrieve the video resource, set the * id query parameter to this value in your API request. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String videoId; /** * The date and time that the video was published to YouTube. * The value may be {@code null}. */ @com.google.api.client.util.Key private com.google.api.client.util.DateTime videoPublishedAt; /** * The time, measured in seconds from the start of the video, when the video should stop playing. * (The playlist owner can specify the times when the video should start and stop playing when the * video is played in the context of the playlist.) By default, assume that the video.endTime is * the end of the video. * @return value or {@code null} for none */ public java.lang.String getEndAt() { return endAt; } /** * The time, measured in seconds from the start of the video, when the video should stop playing. * (The playlist owner can specify the times when the video should start and stop playing when the * video is played in the context of the playlist.) By default, assume that the video.endTime is * the end of the video. * @param endAt endAt or {@code null} for none */ public PlaylistItemContentDetails setEndAt(java.lang.String endAt) { this.endAt = endAt; return this; } /** * A user-generated note for this item. * @return value or {@code null} for none */ public java.lang.String getNote() { return note; } /** * A user-generated note for this item. * @param note note or {@code null} for none */ public PlaylistItemContentDetails setNote(java.lang.String note) { this.note = note; return this; } /** * The time, measured in seconds from the start of the video, when the video should start playing. * (The playlist owner can specify the times when the video should start and stop playing when the * video is played in the context of the playlist.) The default value is 0. * @return value or {@code null} for none */ public java.lang.String getStartAt() { return startAt; } /** * The time, measured in seconds from the start of the video, when the video should start playing. * (The playlist owner can specify the times when the video should start and stop playing when the * video is played in the context of the playlist.) The default value is 0. * @param startAt startAt or {@code null} for none */ public PlaylistItemContentDetails setStartAt(java.lang.String startAt) { this.startAt = startAt; return this; } /** * The ID that YouTube uses to uniquely identify a video. To retrieve the video resource, set the * id query parameter to this value in your API request. * @return value or {@code null} for none */ public java.lang.String getVideoId() { return videoId; } /** * The ID that YouTube uses to uniquely identify a video. To retrieve the video resource, set the * id query parameter to this value in your API request. * @param videoId videoId or {@code null} for none */ public PlaylistItemContentDetails setVideoId(java.lang.String videoId) { this.videoId = videoId; return this; } /** * The date and time that the video was published to YouTube. * @return value or {@code null} for none */ public com.google.api.client.util.DateTime getVideoPublishedAt() { return videoPublishedAt; } /** * The date and time that the video was published to YouTube. * @param videoPublishedAt videoPublishedAt or {@code null} for none */ public PlaylistItemContentDetails setVideoPublishedAt(com.google.api.client.util.DateTime videoPublishedAt) { this.videoPublishedAt = videoPublishedAt; return this; } @Override public PlaylistItemContentDetails set(String fieldName, Object value) { return (PlaylistItemContentDetails) super.set(fieldName, value); } @Override public PlaylistItemContentDetails clone() { return (PlaylistItemContentDetails) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy