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 com.restfb.Facebook;
026
027/**
028 * Represents the
029 * <a href="https://developers.facebook.com/docs/marketing-api/reference/ad-asset-feed-spec-group-rule/">Ad Asset Feed
030 * Spec Group Rule Type</a>.
031 */
032public class AdAssetFeedSpecGroupRule extends BaseAdsObject {
033  private static final long serialVersionUID = 1L;
034  @Facebook("body_label")
035  private AdAssetFeedSpecAssetLabel bodyLabel;
036  @Facebook("caption_label")
037  private AdAssetFeedSpecAssetLabel captionLabel;
038  @Facebook("description_label")
039  private AdAssetFeedSpecAssetLabel descriptionLabel;
040  @Facebook("image_label")
041  private AdAssetFeedSpecAssetLabel imageLabel;
042  @Facebook("link_url_label")
043  private AdAssetFeedSpecAssetLabel linkUrlLabel;
044  @Facebook("title_label")
045  private AdAssetFeedSpecAssetLabel titleLabel;
046  @Facebook("video_label")
047  private AdAssetFeedSpecAssetLabel videoLabel;
048
049  @java.lang.SuppressWarnings("all")
050  @lombok.Generated
051  public AdAssetFeedSpecAssetLabel getBodyLabel() {
052    return this.bodyLabel;
053  }
054
055  @java.lang.SuppressWarnings("all")
056  @lombok.Generated
057  public void setBodyLabel(final AdAssetFeedSpecAssetLabel bodyLabel) {
058    this.bodyLabel = bodyLabel;
059  }
060
061  @java.lang.SuppressWarnings("all")
062  @lombok.Generated
063  public AdAssetFeedSpecAssetLabel getCaptionLabel() {
064    return this.captionLabel;
065  }
066
067  @java.lang.SuppressWarnings("all")
068  @lombok.Generated
069  public void setCaptionLabel(final AdAssetFeedSpecAssetLabel captionLabel) {
070    this.captionLabel = captionLabel;
071  }
072
073  @java.lang.SuppressWarnings("all")
074  @lombok.Generated
075  public AdAssetFeedSpecAssetLabel getDescriptionLabel() {
076    return this.descriptionLabel;
077  }
078
079  @java.lang.SuppressWarnings("all")
080  @lombok.Generated
081  public void setDescriptionLabel(final AdAssetFeedSpecAssetLabel descriptionLabel) {
082    this.descriptionLabel = descriptionLabel;
083  }
084
085  @java.lang.SuppressWarnings("all")
086  @lombok.Generated
087  public AdAssetFeedSpecAssetLabel getImageLabel() {
088    return this.imageLabel;
089  }
090
091  @java.lang.SuppressWarnings("all")
092  @lombok.Generated
093  public void setImageLabel(final AdAssetFeedSpecAssetLabel imageLabel) {
094    this.imageLabel = imageLabel;
095  }
096
097  @java.lang.SuppressWarnings("all")
098  @lombok.Generated
099  public AdAssetFeedSpecAssetLabel getLinkUrlLabel() {
100    return this.linkUrlLabel;
101  }
102
103  @java.lang.SuppressWarnings("all")
104  @lombok.Generated
105  public void setLinkUrlLabel(final AdAssetFeedSpecAssetLabel linkUrlLabel) {
106    this.linkUrlLabel = linkUrlLabel;
107  }
108
109  @java.lang.SuppressWarnings("all")
110  @lombok.Generated
111  public AdAssetFeedSpecAssetLabel getTitleLabel() {
112    return this.titleLabel;
113  }
114
115  @java.lang.SuppressWarnings("all")
116  @lombok.Generated
117  public void setTitleLabel(final AdAssetFeedSpecAssetLabel titleLabel) {
118    this.titleLabel = titleLabel;
119  }
120
121  @java.lang.SuppressWarnings("all")
122  @lombok.Generated
123  public AdAssetFeedSpecAssetLabel getVideoLabel() {
124    return this.videoLabel;
125  }
126
127  @java.lang.SuppressWarnings("all")
128  @lombok.Generated
129  public void setVideoLabel(final AdAssetFeedSpecAssetLabel videoLabel) {
130    this.videoLabel = videoLabel;
131  }
132}