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