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;
027
028/**
029 * Represents the <a href="https://developers.facebook.com/docs/graph-api/reference/app-links/">App links type</a>
030 */
031public class AppLinks extends BaseAdsObject {
032  @Facebook("android")
033  private List<AndroidAppLink> android;
034  @Facebook("ios")
035  private List<IosAppLink> ios;
036  @Facebook("ipad")
037  private List<IosAppLink> ipad;
038  @Facebook("iphone")
039  private List<IosAppLink> iphone;
040  @Facebook("web")
041  private WebAppLink web;
042  @Facebook("windows")
043  private List<WindowsAppLink> windows;
044  @Facebook("windows_phone")
045  private List<WindowsPhoneAppLink> windowsPhone;
046  @Facebook("windows_universal")
047  private List<WindowsAppLink> windowsUniversal;
048
049  @java.lang.SuppressWarnings("all")
050  @lombok.Generated
051  public List<AndroidAppLink> getAndroid() {
052    return this.android;
053  }
054
055  @java.lang.SuppressWarnings("all")
056  @lombok.Generated
057  public void setAndroid(final List<AndroidAppLink> android) {
058    this.android = android;
059  }
060
061  @java.lang.SuppressWarnings("all")
062  @lombok.Generated
063  public List<IosAppLink> getIos() {
064    return this.ios;
065  }
066
067  @java.lang.SuppressWarnings("all")
068  @lombok.Generated
069  public void setIos(final List<IosAppLink> ios) {
070    this.ios = ios;
071  }
072
073  @java.lang.SuppressWarnings("all")
074  @lombok.Generated
075  public List<IosAppLink> getIpad() {
076    return this.ipad;
077  }
078
079  @java.lang.SuppressWarnings("all")
080  @lombok.Generated
081  public void setIpad(final List<IosAppLink> ipad) {
082    this.ipad = ipad;
083  }
084
085  @java.lang.SuppressWarnings("all")
086  @lombok.Generated
087  public List<IosAppLink> getIphone() {
088    return this.iphone;
089  }
090
091  @java.lang.SuppressWarnings("all")
092  @lombok.Generated
093  public void setIphone(final List<IosAppLink> iphone) {
094    this.iphone = iphone;
095  }
096
097  @java.lang.SuppressWarnings("all")
098  @lombok.Generated
099  public WebAppLink getWeb() {
100    return this.web;
101  }
102
103  @java.lang.SuppressWarnings("all")
104  @lombok.Generated
105  public void setWeb(final WebAppLink web) {
106    this.web = web;
107  }
108
109  @java.lang.SuppressWarnings("all")
110  @lombok.Generated
111  public List<WindowsAppLink> getWindows() {
112    return this.windows;
113  }
114
115  @java.lang.SuppressWarnings("all")
116  @lombok.Generated
117  public void setWindows(final List<WindowsAppLink> windows) {
118    this.windows = windows;
119  }
120
121  @java.lang.SuppressWarnings("all")
122  @lombok.Generated
123  public List<WindowsPhoneAppLink> getWindowsPhone() {
124    return this.windowsPhone;
125  }
126
127  @java.lang.SuppressWarnings("all")
128  @lombok.Generated
129  public void setWindowsPhone(final List<WindowsPhoneAppLink> windowsPhone) {
130    this.windowsPhone = windowsPhone;
131  }
132
133  @java.lang.SuppressWarnings("all")
134  @lombok.Generated
135  public List<WindowsAppLink> getWindowsUniversal() {
136    return this.windowsUniversal;
137  }
138
139  @java.lang.SuppressWarnings("all")
140  @lombok.Generated
141  public void setWindowsUniversal(final List<WindowsAppLink> windowsUniversal) {
142    this.windowsUniversal = windowsUniversal;
143  }
144}