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 027public class TargetingResponseGeographic extends NamedAdsObject { 028 @Facebook 029 private String key; 030 @Facebook 031 private String type; 032 @Facebook("address_string") 033 private String addressString; 034 @Facebook 035 private String latitude; 036 @Facebook 037 private String longitude; 038 @Facebook("country_code") 039 private String countryCode; 040 @Facebook("country_name") 041 private String countryName; 042 @Facebook 043 private String region; 044 @Facebook("region_id") 045 private Long regionId; 046 @Facebook("supports_region") 047 private Boolean supportsRegion; 048 @Facebook("supports_city") 049 private Boolean supportsCity; 050 @Facebook("primary_city") 051 private String primaryCity; 052 @Facebook("primary_city_id") 053 private Long primaryCityId; 054 055 @java.lang.SuppressWarnings("all") 056 @lombok.Generated 057 public String getKey() { 058 return this.key; 059 } 060 061 @java.lang.SuppressWarnings("all") 062 @lombok.Generated 063 public void setKey(final String key) { 064 this.key = key; 065 } 066 067 @java.lang.SuppressWarnings("all") 068 @lombok.Generated 069 public String getType() { 070 return this.type; 071 } 072 073 @java.lang.SuppressWarnings("all") 074 @lombok.Generated 075 public void setType(final String type) { 076 this.type = type; 077 } 078 079 @java.lang.SuppressWarnings("all") 080 @lombok.Generated 081 public String getAddressString() { 082 return this.addressString; 083 } 084 085 @java.lang.SuppressWarnings("all") 086 @lombok.Generated 087 public void setAddressString(final String addressString) { 088 this.addressString = addressString; 089 } 090 091 @java.lang.SuppressWarnings("all") 092 @lombok.Generated 093 public String getLatitude() { 094 return this.latitude; 095 } 096 097 @java.lang.SuppressWarnings("all") 098 @lombok.Generated 099 public void setLatitude(final String latitude) { 100 this.latitude = latitude; 101 } 102 103 @java.lang.SuppressWarnings("all") 104 @lombok.Generated 105 public String getLongitude() { 106 return this.longitude; 107 } 108 109 @java.lang.SuppressWarnings("all") 110 @lombok.Generated 111 public void setLongitude(final String longitude) { 112 this.longitude = longitude; 113 } 114 115 @java.lang.SuppressWarnings("all") 116 @lombok.Generated 117 public String getCountryCode() { 118 return this.countryCode; 119 } 120 121 @java.lang.SuppressWarnings("all") 122 @lombok.Generated 123 public void setCountryCode(final String countryCode) { 124 this.countryCode = countryCode; 125 } 126 127 @java.lang.SuppressWarnings("all") 128 @lombok.Generated 129 public String getCountryName() { 130 return this.countryName; 131 } 132 133 @java.lang.SuppressWarnings("all") 134 @lombok.Generated 135 public void setCountryName(final String countryName) { 136 this.countryName = countryName; 137 } 138 139 @java.lang.SuppressWarnings("all") 140 @lombok.Generated 141 public String getRegion() { 142 return this.region; 143 } 144 145 @java.lang.SuppressWarnings("all") 146 @lombok.Generated 147 public void setRegion(final String region) { 148 this.region = region; 149 } 150 151 @java.lang.SuppressWarnings("all") 152 @lombok.Generated 153 public Long getRegionId() { 154 return this.regionId; 155 } 156 157 @java.lang.SuppressWarnings("all") 158 @lombok.Generated 159 public void setRegionId(final Long regionId) { 160 this.regionId = regionId; 161 } 162 163 @java.lang.SuppressWarnings("all") 164 @lombok.Generated 165 public Boolean getSupportsRegion() { 166 return this.supportsRegion; 167 } 168 169 @java.lang.SuppressWarnings("all") 170 @lombok.Generated 171 public void setSupportsRegion(final Boolean supportsRegion) { 172 this.supportsRegion = supportsRegion; 173 } 174 175 @java.lang.SuppressWarnings("all") 176 @lombok.Generated 177 public Boolean getSupportsCity() { 178 return this.supportsCity; 179 } 180 181 @java.lang.SuppressWarnings("all") 182 @lombok.Generated 183 public void setSupportsCity(final Boolean supportsCity) { 184 this.supportsCity = supportsCity; 185 } 186 187 @java.lang.SuppressWarnings("all") 188 @lombok.Generated 189 public String getPrimaryCity() { 190 return this.primaryCity; 191 } 192 193 @java.lang.SuppressWarnings("all") 194 @lombok.Generated 195 public void setPrimaryCity(final String primaryCity) { 196 this.primaryCity = primaryCity; 197 } 198 199 @java.lang.SuppressWarnings("all") 200 @lombok.Generated 201 public Long getPrimaryCityId() { 202 return this.primaryCityId; 203 } 204 205 @java.lang.SuppressWarnings("all") 206 @lombok.Generated 207 public void setPrimaryCityId(final Long primaryCityId) { 208 this.primaryCityId = primaryCityId; 209 } 210}