001// Generated by delombok at Thu Aug 13 13:56:44 UTC 2026
002/*
003 * Copyright (c) 2010-2026 Mark Allen, Norbert Bartels.
004 *
005 * Permission is hereby granted, free of charge, to any person obtaining a copy
006 * of this software and associated documentation files (the "Software"), to deal
007 * in the Software without restriction, including without limitation the rights
008 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
009 * copies of the Software, and to permit persons to whom the Software is
010 * furnished to do so, subject to the following conditions:
011 *
012 * The above copyright notice and this permission notice shall be included in
013 * all copies or substantial portions of the Software.
014 *
015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
016 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
017 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
018 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
019 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
020 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
021 * THE SOFTWARE.
022 */
023package com.restfb.types;
024
025import java.util.Date;
026import com.restfb.Facebook;
027
028/**
029 * Represents the <a href="http://developers.facebook.com/docs/reference/api/video-list">Video List Graph API type</a>.
030 *
031 * Facebook APi Version 2.3+
032 *
033 * @since 1.12.0
034 */
035public class VideoList extends FacebookType {
036  private static final long serialVersionUID = 1L;
037  /**
038   * Description of the playlist
039   */
040  @Facebook
041  private String description;
042  /**
043   * Title of the playlist
044   */
045  @Facebook
046  private String title;
047  /**
048   * Owner of the playlist
049   */
050  @Facebook
051  private From owner;
052  /**
053   * The time when the playlist was created
054   */
055  @Facebook("creation_time")
056  private Date creationTime;
057  /**
058   * The time when the contents of the playlist was last changed
059   */
060  @Facebook("last_modified")
061  private Date lastModified;
062
063  /**
064   * Description of the playlist
065   */
066  @java.lang.SuppressWarnings("all")
067  @lombok.Generated
068  public String getDescription() {
069    return this.description;
070  }
071
072  /**
073   * Description of the playlist
074   */
075  @java.lang.SuppressWarnings("all")
076  @lombok.Generated
077  public void setDescription(final String description) {
078    this.description = description;
079  }
080
081  /**
082   * Title of the playlist
083   */
084  @java.lang.SuppressWarnings("all")
085  @lombok.Generated
086  public String getTitle() {
087    return this.title;
088  }
089
090  /**
091   * Title of the playlist
092   */
093  @java.lang.SuppressWarnings("all")
094  @lombok.Generated
095  public void setTitle(final String title) {
096    this.title = title;
097  }
098
099  /**
100   * Owner of the playlist
101   */
102  @java.lang.SuppressWarnings("all")
103  @lombok.Generated
104  public From getOwner() {
105    return this.owner;
106  }
107
108  /**
109   * Owner of the playlist
110   */
111  @java.lang.SuppressWarnings("all")
112  @lombok.Generated
113  public void setOwner(final From owner) {
114    this.owner = owner;
115  }
116
117  /**
118   * The time when the playlist was created
119   */
120  @java.lang.SuppressWarnings("all")
121  @lombok.Generated
122  public Date getCreationTime() {
123    return this.creationTime;
124  }
125
126  /**
127   * The time when the playlist was created
128   */
129  @java.lang.SuppressWarnings("all")
130  @lombok.Generated
131  public void setCreationTime(final Date creationTime) {
132    this.creationTime = creationTime;
133  }
134
135  /**
136   * The time when the contents of the playlist was last changed
137   */
138  @java.lang.SuppressWarnings("all")
139  @lombok.Generated
140  public Date getLastModified() {
141    return this.lastModified;
142  }
143
144  /**
145   * The time when the contents of the playlist was last changed
146   */
147  @java.lang.SuppressWarnings("all")
148  @lombok.Generated
149  public void setLastModified(final Date lastModified) {
150    this.lastModified = lastModified;
151  }
152}