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.List; 026import com.restfb.Facebook; 027import com.restfb.types.AbstractFacebookType; 028import com.restfb.types.features.HasMessage; 029 030public class AdCreativeVideoData extends AbstractFacebookType implements HasMessage { 031 @Facebook("additional_image_index") 032 private Long additionalImageIndex; 033 @Facebook("branded_content_sponsor_page_id") 034 private String brandedContentSponsorPageId; 035 @Facebook("branded_content_sponsor_relationship") 036 private String brandedContentSponsorRelationship; 037 @Facebook("call_to_action") 038 private AdCreativeLinkDataCallToAction callToAction; 039 @Facebook 040 private String description; 041 @Facebook("link_description") 042 private String linkDescription; 043 @Facebook 044 private String message; 045 @Facebook("image_hash") 046 private String imageHash; 047 @Facebook("image_url") 048 private String imageUrl; 049 @Facebook("offer_id") 050 private String offerId; 051 @Facebook("page_welcome_message") 052 private String pageWelcomeMessage; 053 @Facebook("post_click_configuration") 054 private AdCreativePostClickConfiguration postClickConfiguration; 055 @Facebook("retailer_item_ids") 056 private List<String> retailerItemIds; 057 @Facebook 058 private Targeting targeting; 059 @Facebook 060 private String title; 061 @Facebook("video_id") 062 private String videoId; 063 064 @java.lang.SuppressWarnings("all") 065 @lombok.Generated 066 public Long getAdditionalImageIndex() { 067 return this.additionalImageIndex; 068 } 069 070 @java.lang.SuppressWarnings("all") 071 @lombok.Generated 072 public void setAdditionalImageIndex(final Long additionalImageIndex) { 073 this.additionalImageIndex = additionalImageIndex; 074 } 075 076 @java.lang.SuppressWarnings("all") 077 @lombok.Generated 078 public String getBrandedContentSponsorPageId() { 079 return this.brandedContentSponsorPageId; 080 } 081 082 @java.lang.SuppressWarnings("all") 083 @lombok.Generated 084 public void setBrandedContentSponsorPageId(final String brandedContentSponsorPageId) { 085 this.brandedContentSponsorPageId = brandedContentSponsorPageId; 086 } 087 088 @java.lang.SuppressWarnings("all") 089 @lombok.Generated 090 public String getBrandedContentSponsorRelationship() { 091 return this.brandedContentSponsorRelationship; 092 } 093 094 @java.lang.SuppressWarnings("all") 095 @lombok.Generated 096 public void setBrandedContentSponsorRelationship(final String brandedContentSponsorRelationship) { 097 this.brandedContentSponsorRelationship = brandedContentSponsorRelationship; 098 } 099 100 @java.lang.SuppressWarnings("all") 101 @lombok.Generated 102 public AdCreativeLinkDataCallToAction getCallToAction() { 103 return this.callToAction; 104 } 105 106 @java.lang.SuppressWarnings("all") 107 @lombok.Generated 108 public void setCallToAction(final AdCreativeLinkDataCallToAction callToAction) { 109 this.callToAction = callToAction; 110 } 111 112 @java.lang.SuppressWarnings("all") 113 @lombok.Generated 114 public String getDescription() { 115 return this.description; 116 } 117 118 @java.lang.SuppressWarnings("all") 119 @lombok.Generated 120 public void setDescription(final String description) { 121 this.description = description; 122 } 123 124 @java.lang.SuppressWarnings("all") 125 @lombok.Generated 126 public String getLinkDescription() { 127 return this.linkDescription; 128 } 129 130 @java.lang.SuppressWarnings("all") 131 @lombok.Generated 132 public void setLinkDescription(final String linkDescription) { 133 this.linkDescription = linkDescription; 134 } 135 136 @Override 137 @java.lang.SuppressWarnings("all") 138 @lombok.Generated 139 public String getMessage() { 140 return this.message; 141 } 142 143 @java.lang.SuppressWarnings("all") 144 @lombok.Generated 145 public void setMessage(final String message) { 146 this.message = message; 147 } 148 149 @java.lang.SuppressWarnings("all") 150 @lombok.Generated 151 public String getImageHash() { 152 return this.imageHash; 153 } 154 155 @java.lang.SuppressWarnings("all") 156 @lombok.Generated 157 public void setImageHash(final String imageHash) { 158 this.imageHash = imageHash; 159 } 160 161 @java.lang.SuppressWarnings("all") 162 @lombok.Generated 163 public String getImageUrl() { 164 return this.imageUrl; 165 } 166 167 @java.lang.SuppressWarnings("all") 168 @lombok.Generated 169 public void setImageUrl(final String imageUrl) { 170 this.imageUrl = imageUrl; 171 } 172 173 @java.lang.SuppressWarnings("all") 174 @lombok.Generated 175 public String getOfferId() { 176 return this.offerId; 177 } 178 179 @java.lang.SuppressWarnings("all") 180 @lombok.Generated 181 public void setOfferId(final String offerId) { 182 this.offerId = offerId; 183 } 184 185 @java.lang.SuppressWarnings("all") 186 @lombok.Generated 187 public String getPageWelcomeMessage() { 188 return this.pageWelcomeMessage; 189 } 190 191 @java.lang.SuppressWarnings("all") 192 @lombok.Generated 193 public void setPageWelcomeMessage(final String pageWelcomeMessage) { 194 this.pageWelcomeMessage = pageWelcomeMessage; 195 } 196 197 @java.lang.SuppressWarnings("all") 198 @lombok.Generated 199 public AdCreativePostClickConfiguration getPostClickConfiguration() { 200 return this.postClickConfiguration; 201 } 202 203 @java.lang.SuppressWarnings("all") 204 @lombok.Generated 205 public void setPostClickConfiguration(final AdCreativePostClickConfiguration postClickConfiguration) { 206 this.postClickConfiguration = postClickConfiguration; 207 } 208 209 @java.lang.SuppressWarnings("all") 210 @lombok.Generated 211 public List<String> getRetailerItemIds() { 212 return this.retailerItemIds; 213 } 214 215 @java.lang.SuppressWarnings("all") 216 @lombok.Generated 217 public void setRetailerItemIds(final List<String> retailerItemIds) { 218 this.retailerItemIds = retailerItemIds; 219 } 220 221 @java.lang.SuppressWarnings("all") 222 @lombok.Generated 223 public Targeting getTargeting() { 224 return this.targeting; 225 } 226 227 @java.lang.SuppressWarnings("all") 228 @lombok.Generated 229 public void setTargeting(final Targeting targeting) { 230 this.targeting = targeting; 231 } 232 233 @java.lang.SuppressWarnings("all") 234 @lombok.Generated 235 public String getTitle() { 236 return this.title; 237 } 238 239 @java.lang.SuppressWarnings("all") 240 @lombok.Generated 241 public void setTitle(final String title) { 242 this.title = title; 243 } 244 245 @java.lang.SuppressWarnings("all") 246 @lombok.Generated 247 public String getVideoId() { 248 return this.videoId; 249 } 250 251 @java.lang.SuppressWarnings("all") 252 @lombok.Generated 253 public void setVideoId(final String videoId) { 254 this.videoId = videoId; 255 } 256}