001// Generated by delombok at Sun Sep 26 16:30:34 CEST 2021
002/*
003 * Copyright (c) 2010-2021 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;
026import java.util.ArrayList;
027import java.util.List;
028
029public class ProductCatalog extends NamedAdsObject {
030  @Facebook
031  private Business business;
032  @Facebook("fallback_image_url")
033  private List<String> fallbackImageUrl = new ArrayList<>();
034  @Facebook("feed_count")
035  private Long feedCount;
036  @Facebook("product_count")
037  private Long productCount;
038  @Facebook("store_catalog_settings")
039  private StoreCatalogSettings storeCatalogSettings;
040  @Facebook
041  private String vertical;
042
043  @java.lang.SuppressWarnings("all")
044  public Business getBusiness() {
045    return this.business;
046  }
047
048  @java.lang.SuppressWarnings("all")
049  public void setBusiness(final Business business) {
050    this.business = business;
051  }
052
053  @java.lang.SuppressWarnings("all")
054  public List<String> getFallbackImageUrl() {
055    return this.fallbackImageUrl;
056  }
057
058  @java.lang.SuppressWarnings("all")
059  public void setFallbackImageUrl(final List<String> fallbackImageUrl) {
060    this.fallbackImageUrl = fallbackImageUrl;
061  }
062
063  @java.lang.SuppressWarnings("all")
064  public Long getFeedCount() {
065    return this.feedCount;
066  }
067
068  @java.lang.SuppressWarnings("all")
069  public void setFeedCount(final Long feedCount) {
070    this.feedCount = feedCount;
071  }
072
073  @java.lang.SuppressWarnings("all")
074  public Long getProductCount() {
075    return this.productCount;
076  }
077
078  @java.lang.SuppressWarnings("all")
079  public void setProductCount(final Long productCount) {
080    this.productCount = productCount;
081  }
082
083  @java.lang.SuppressWarnings("all")
084  public StoreCatalogSettings getStoreCatalogSettings() {
085    return this.storeCatalogSettings;
086  }
087
088  @java.lang.SuppressWarnings("all")
089  public void setStoreCatalogSettings(final StoreCatalogSettings storeCatalogSettings) {
090    this.storeCatalogSettings = storeCatalogSettings;
091  }
092
093  @java.lang.SuppressWarnings("all")
094  public String getVertical() {
095    return this.vertical;
096  }
097
098  @java.lang.SuppressWarnings("all")
099  public void setVertical(final String vertical) {
100    this.vertical = vertical;
101  }
102}