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 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 @lombok.Generated 055 public String getDescription() { 056 return this.description; 057 } 058 059 @java.lang.SuppressWarnings("all") 060 @lombok.Generated 061 public void setDescription(final String description) { 062 this.description = description; 063 } 064 065 @java.lang.SuppressWarnings("all") 066 @lombok.Generated 067 public Date getCreated() { 068 return this.created; 069 } 070 071 @java.lang.SuppressWarnings("all") 072 @lombok.Generated 073 public void setCreated(final Date created) { 074 this.created = created; 075 } 076 077 @java.lang.SuppressWarnings("all") 078 @lombok.Generated 079 public String getLink() { 080 return this.link; 081 } 082 083 @java.lang.SuppressWarnings("all") 084 @lombok.Generated 085 public void setLink(final String link) { 086 this.link = link; 087 } 088 089 @java.lang.SuppressWarnings("all") 090 @lombok.Generated 091 public String getMessage() { 092 return this.message; 093 } 094 095 @java.lang.SuppressWarnings("all") 096 @lombok.Generated 097 public void setMessage(final String message) { 098 this.message = message; 099 } 100 101 @java.lang.SuppressWarnings("all") 102 @lombok.Generated 103 public String getTitle() { 104 return this.title; 105 } 106 107 @java.lang.SuppressWarnings("all") 108 @lombok.Generated 109 public void setTitle(final String title) { 110 this.title = title; 111 } 112 113 @java.lang.SuppressWarnings("all") 114 @lombok.Generated 115 public String getImageUrl() { 116 return this.imageUrl; 117 } 118 119 @java.lang.SuppressWarnings("all") 120 @lombok.Generated 121 public void setImageUrl(final String imageUrl) { 122 this.imageUrl = imageUrl; 123 } 124 125 @java.lang.SuppressWarnings("all") 126 @lombok.Generated 127 public String getOwnerId() { 128 return this.ownerId; 129 } 130 131 @java.lang.SuppressWarnings("all") 132 @lombok.Generated 133 public void setOwnerId(final String ownerId) { 134 this.ownerId = ownerId; 135 } 136 137 @java.lang.SuppressWarnings("all") 138 @lombok.Generated 139 public String getProductId() { 140 return this.productId; 141 } 142 143 @java.lang.SuppressWarnings("all") 144 @lombok.Generated 145 public void setProductId(final String productId) { 146 this.productId = productId; 147 } 148 149 @java.lang.SuppressWarnings("all") 150 @lombok.Generated 151 public String getPlaceId() { 152 return this.placeId; 153 } 154 155 @java.lang.SuppressWarnings("all") 156 @lombok.Generated 157 public void setPlaceId(final String placeId) { 158 this.placeId = placeId; 159 } 160 161 @java.lang.SuppressWarnings("all") 162 @lombok.Generated 163 public Comments getComments() { 164 return this.comments; 165 } 166 167 @java.lang.SuppressWarnings("all") 168 @lombok.Generated 169 public void setComments(final Comments comments) { 170 this.comments = comments; 171 } 172 173 @java.lang.SuppressWarnings("all") 174 @lombok.Generated 175 public Likes getLikes() { 176 return this.likes; 177 } 178 179 @java.lang.SuppressWarnings("all") 180 @lombok.Generated 181 public void setLikes(final Likes likes) { 182 this.likes = likes; 183 } 184}