001// Generated by delombok at Fri Oct 04 16:05:59 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; 029 030public class ProductCatalog extends NamedAdsObject { 031 @Facebook 032 private Business business; 033 @Facebook("fallback_image_url") 034 private List<String> fallbackImageUrl = new ArrayList<>(); 035 @Facebook("feed_count") 036 private Long feedCount; 037 @Facebook("product_count") 038 private Long productCount; 039 @Facebook("store_catalog_settings") 040 private StoreCatalogSettings storeCatalogSettings; 041 @Facebook 042 private String vertical; 043 @Facebook("user_access_expire_time") 044 private Date userAccessExpireTime; 045 046 @java.lang.SuppressWarnings("all") 047 public Business getBusiness() { 048 return this.business; 049 } 050 051 @java.lang.SuppressWarnings("all") 052 public void setBusiness(final Business business) { 053 this.business = business; 054 } 055 056 @java.lang.SuppressWarnings("all") 057 public List<String> getFallbackImageUrl() { 058 return this.fallbackImageUrl; 059 } 060 061 @java.lang.SuppressWarnings("all") 062 public void setFallbackImageUrl(final List<String> fallbackImageUrl) { 063 this.fallbackImageUrl = fallbackImageUrl; 064 } 065 066 @java.lang.SuppressWarnings("all") 067 public Long getFeedCount() { 068 return this.feedCount; 069 } 070 071 @java.lang.SuppressWarnings("all") 072 public void setFeedCount(final Long feedCount) { 073 this.feedCount = feedCount; 074 } 075 076 @java.lang.SuppressWarnings("all") 077 public Long getProductCount() { 078 return this.productCount; 079 } 080 081 @java.lang.SuppressWarnings("all") 082 public void setProductCount(final Long productCount) { 083 this.productCount = productCount; 084 } 085 086 @java.lang.SuppressWarnings("all") 087 public StoreCatalogSettings getStoreCatalogSettings() { 088 return this.storeCatalogSettings; 089 } 090 091 @java.lang.SuppressWarnings("all") 092 public void setStoreCatalogSettings(final StoreCatalogSettings storeCatalogSettings) { 093 this.storeCatalogSettings = storeCatalogSettings; 094 } 095 096 @java.lang.SuppressWarnings("all") 097 public String getVertical() { 098 return this.vertical; 099 } 100 101 @java.lang.SuppressWarnings("all") 102 public void setVertical(final String vertical) { 103 this.vertical = vertical; 104 } 105 106 @java.lang.SuppressWarnings("all") 107 public Date getUserAccessExpireTime() { 108 return this.userAccessExpireTime; 109 } 110 111 @java.lang.SuppressWarnings("all") 112 public void setUserAccessExpireTime(final Date userAccessExpireTime) { 113 this.userAccessExpireTime = userAccessExpireTime; 114 } 115}