001// Generated by delombok at Fri Oct 04 16:05:59 CEST 2024 002/* 003 * Copyright (c) 2010-2024 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 public String getDescription() { 068 return this.description; 069 } 070 071 /** 072 * Description of the playlist 073 */ 074 @java.lang.SuppressWarnings("all") 075 public void setDescription(final String description) { 076 this.description = description; 077 } 078 079 /** 080 * Title of the playlist 081 */ 082 @java.lang.SuppressWarnings("all") 083 public String getTitle() { 084 return this.title; 085 } 086 087 /** 088 * Title of the playlist 089 */ 090 @java.lang.SuppressWarnings("all") 091 public void setTitle(final String title) { 092 this.title = title; 093 } 094 095 /** 096 * Owner of the playlist 097 */ 098 @java.lang.SuppressWarnings("all") 099 public From getOwner() { 100 return this.owner; 101 } 102 103 /** 104 * Owner of the playlist 105 */ 106 @java.lang.SuppressWarnings("all") 107 public void setOwner(final From owner) { 108 this.owner = owner; 109 } 110 111 /** 112 * The time when the playlist was created 113 */ 114 @java.lang.SuppressWarnings("all") 115 public Date getCreationTime() { 116 return this.creationTime; 117 } 118 119 /** 120 * The time when the playlist was created 121 */ 122 @java.lang.SuppressWarnings("all") 123 public void setCreationTime(final Date creationTime) { 124 this.creationTime = creationTime; 125 } 126 127 /** 128 * The time when the contents of the playlist was last changed 129 */ 130 @java.lang.SuppressWarnings("all") 131 public Date getLastModified() { 132 return this.lastModified; 133 } 134 135 /** 136 * The time when the contents of the playlist was last changed 137 */ 138 @java.lang.SuppressWarnings("all") 139 public void setLastModified(final Date lastModified) { 140 this.lastModified = lastModified; 141 } 142}