001// Generated by delombok at Thu Aug 13 13:56:43 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.ads;
024
025import java.util.ArrayList;
026import java.util.Date;
027import java.util.List;
028import com.restfb.Facebook;
029import com.restfb.types.Comments;
030import com.restfb.types.FacebookType;
031import com.restfb.types.Likes;
032
033public class RTBDynamicPost extends FacebookType {
034  @Facebook("child_attachments")
035  private List<DynamicPostChildAttachment> childAttachments = new ArrayList<>();
036  @Facebook
037  private Date created;
038  @Facebook
039  private String description;
040  @Facebook("image_url")
041  private String imageUrl;
042  @Facebook
043  private String link;
044  @Facebook
045  private String message;
046  @Facebook("owner_id")
047  private String ownerId;
048  @Facebook("place_id")
049  private String placeId;
050  @Facebook("product_id")
051  private String productId;
052  @Facebook
053  private String title;
054  @Facebook
055  private Comments comments;
056  @Facebook
057  private Likes likes;
058
059  @java.lang.SuppressWarnings("all")
060  @lombok.Generated
061  public List<DynamicPostChildAttachment> getChildAttachments() {
062    return this.childAttachments;
063  }
064
065  @java.lang.SuppressWarnings("all")
066  @lombok.Generated
067  public void setChildAttachments(final List<DynamicPostChildAttachment> childAttachments) {
068    this.childAttachments = childAttachments;
069  }
070
071  @java.lang.SuppressWarnings("all")
072  @lombok.Generated
073  public Date getCreated() {
074    return this.created;
075  }
076
077  @java.lang.SuppressWarnings("all")
078  @lombok.Generated
079  public void setCreated(final Date created) {
080    this.created = created;
081  }
082
083  @java.lang.SuppressWarnings("all")
084  @lombok.Generated
085  public String getDescription() {
086    return this.description;
087  }
088
089  @java.lang.SuppressWarnings("all")
090  @lombok.Generated
091  public void setDescription(final String description) {
092    this.description = description;
093  }
094
095  @java.lang.SuppressWarnings("all")
096  @lombok.Generated
097  public String getImageUrl() {
098    return this.imageUrl;
099  }
100
101  @java.lang.SuppressWarnings("all")
102  @lombok.Generated
103  public void setImageUrl(final String imageUrl) {
104    this.imageUrl = imageUrl;
105  }
106
107  @java.lang.SuppressWarnings("all")
108  @lombok.Generated
109  public String getLink() {
110    return this.link;
111  }
112
113  @java.lang.SuppressWarnings("all")
114  @lombok.Generated
115  public void setLink(final String link) {
116    this.link = link;
117  }
118
119  @java.lang.SuppressWarnings("all")
120  @lombok.Generated
121  public String getMessage() {
122    return this.message;
123  }
124
125  @java.lang.SuppressWarnings("all")
126  @lombok.Generated
127  public void setMessage(final String message) {
128    this.message = message;
129  }
130
131  @java.lang.SuppressWarnings("all")
132  @lombok.Generated
133  public String getOwnerId() {
134    return this.ownerId;
135  }
136
137  @java.lang.SuppressWarnings("all")
138  @lombok.Generated
139  public void setOwnerId(final String ownerId) {
140    this.ownerId = ownerId;
141  }
142
143  @java.lang.SuppressWarnings("all")
144  @lombok.Generated
145  public String getPlaceId() {
146    return this.placeId;
147  }
148
149  @java.lang.SuppressWarnings("all")
150  @lombok.Generated
151  public void setPlaceId(final String placeId) {
152    this.placeId = placeId;
153  }
154
155  @java.lang.SuppressWarnings("all")
156  @lombok.Generated
157  public String getProductId() {
158    return this.productId;
159  }
160
161  @java.lang.SuppressWarnings("all")
162  @lombok.Generated
163  public void setProductId(final String productId) {
164    this.productId = productId;
165  }
166
167  @java.lang.SuppressWarnings("all")
168  @lombok.Generated
169  public String getTitle() {
170    return this.title;
171  }
172
173  @java.lang.SuppressWarnings("all")
174  @lombok.Generated
175  public void setTitle(final String title) {
176    this.title = title;
177  }
178
179  @java.lang.SuppressWarnings("all")
180  @lombok.Generated
181  public Comments getComments() {
182    return this.comments;
183  }
184
185  @java.lang.SuppressWarnings("all")
186  @lombok.Generated
187  public void setComments(final Comments comments) {
188    this.comments = comments;
189  }
190
191  @java.lang.SuppressWarnings("all")
192  @lombok.Generated
193  public Likes getLikes() {
194    return this.likes;
195  }
196
197  @java.lang.SuppressWarnings("all")
198  @lombok.Generated
199  public void setLikes(final Likes likes) {
200    this.likes = likes;
201  }
202}