001// Generated by delombok at Thu Mar 06 11:40:42 UTC 2025 002/* 003 * Copyright (c) 2010-2025 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 com.restfb.Facebook; 026import java.util.Date; 027 028public class RtbDynamicPost extends FacebookType { 029 private static final long serialVersionUID = 1L; 030 @Facebook 031 private String description; 032 @Facebook 033 private Date created; 034 @Facebook 035 private String link; 036 @Facebook 037 private String message; 038 @Facebook 039 private String title; 040 @Facebook("image_url") 041 private String imageUrl; 042 @Facebook("owner_id") 043 private String ownerId; 044 @Facebook("product_id") 045 private String productId; 046 @Facebook("place_id") 047 private String placeId; 048 @Facebook 049 private Comments comments; 050 @Facebook 051 private Likes likes; 052 053 @java.lang.SuppressWarnings("all") 054 public String getDescription() { 055 return this.description; 056 } 057 058 @java.lang.SuppressWarnings("all") 059 public void setDescription(final String description) { 060 this.description = description; 061 } 062 063 @java.lang.SuppressWarnings("all") 064 public Date getCreated() { 065 return this.created; 066 } 067 068 @java.lang.SuppressWarnings("all") 069 public void setCreated(final Date created) { 070 this.created = created; 071 } 072 073 @java.lang.SuppressWarnings("all") 074 public String getLink() { 075 return this.link; 076 } 077 078 @java.lang.SuppressWarnings("all") 079 public void setLink(final String link) { 080 this.link = link; 081 } 082 083 @java.lang.SuppressWarnings("all") 084 public String getMessage() { 085 return this.message; 086 } 087 088 @java.lang.SuppressWarnings("all") 089 public void setMessage(final String message) { 090 this.message = message; 091 } 092 093 @java.lang.SuppressWarnings("all") 094 public String getTitle() { 095 return this.title; 096 } 097 098 @java.lang.SuppressWarnings("all") 099 public void setTitle(final String title) { 100 this.title = title; 101 } 102 103 @java.lang.SuppressWarnings("all") 104 public String getImageUrl() { 105 return this.imageUrl; 106 } 107 108 @java.lang.SuppressWarnings("all") 109 public void setImageUrl(final String imageUrl) { 110 this.imageUrl = imageUrl; 111 } 112 113 @java.lang.SuppressWarnings("all") 114 public String getOwnerId() { 115 return this.ownerId; 116 } 117 118 @java.lang.SuppressWarnings("all") 119 public void setOwnerId(final String ownerId) { 120 this.ownerId = ownerId; 121 } 122 123 @java.lang.SuppressWarnings("all") 124 public String getProductId() { 125 return this.productId; 126 } 127 128 @java.lang.SuppressWarnings("all") 129 public void setProductId(final String productId) { 130 this.productId = productId; 131 } 132 133 @java.lang.SuppressWarnings("all") 134 public String getPlaceId() { 135 return this.placeId; 136 } 137 138 @java.lang.SuppressWarnings("all") 139 public void setPlaceId(final String placeId) { 140 this.placeId = placeId; 141 } 142 143 @java.lang.SuppressWarnings("all") 144 public Comments getComments() { 145 return this.comments; 146 } 147 148 @java.lang.SuppressWarnings("all") 149 public void setComments(final Comments comments) { 150 this.comments = comments; 151 } 152 153 @java.lang.SuppressWarnings("all") 154 public Likes getLikes() { 155 return this.likes; 156 } 157 158 @java.lang.SuppressWarnings("all") 159 public void setLikes(final Likes likes) { 160 this.likes = likes; 161 } 162}