001// Generated by delombok at Sun Sep 07 20:35:12 UTC 2025
002/*
003 * Copyright (c) 2010-2025 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.threads;
024
025import com.restfb.Facebook;
026
027/**
028 * Represents the <a href="https://developers.facebook.com/docs/threads/threads-profiles#retrieve-a-threads-app-scoped-user-s-profile-information">Threads profile</a>
029 */
030public class TdProfile extends TdProfileBase {
031  private static final long serialVersionUID = 1L;
032  /**
033   * Instagram user ID. This is returned by default.
034   */
035  @Facebook
036  private String id;
037  /**
038   * URL of the user's profile picture on Threads.
039   */
040  @Facebook("threads_profile_picture_url")
041  private String threadsProfilePictureUrl;
042  /**
043   * Biography text on Threads profile.
044   */
045  @Facebook("threads_biography")
046  private String threadsBiography;
047  /**
048   * Returns true if the user is verified on Threads.
049   */
050  @Facebook("is_verified")
051  private Boolean isVerified;
052
053  /**
054   * Instagram user ID. This is returned by default.
055   */
056  @java.lang.SuppressWarnings("all")
057  public String getId() {
058    return this.id;
059  }
060
061  /**
062   * Instagram user ID. This is returned by default.
063   */
064  @java.lang.SuppressWarnings("all")
065  public void setId(final String id) {
066    this.id = id;
067  }
068
069  /**
070   * URL of the user's profile picture on Threads.
071   */
072  @java.lang.SuppressWarnings("all")
073  public String getThreadsProfilePictureUrl() {
074    return this.threadsProfilePictureUrl;
075  }
076
077  /**
078   * URL of the user's profile picture on Threads.
079   */
080  @java.lang.SuppressWarnings("all")
081  public void setThreadsProfilePictureUrl(final String threadsProfilePictureUrl) {
082    this.threadsProfilePictureUrl = threadsProfilePictureUrl;
083  }
084
085  /**
086   * Biography text on Threads profile.
087   */
088  @java.lang.SuppressWarnings("all")
089  public String getThreadsBiography() {
090    return this.threadsBiography;
091  }
092
093  /**
094   * Biography text on Threads profile.
095   */
096  @java.lang.SuppressWarnings("all")
097  public void setThreadsBiography(final String threadsBiography) {
098    this.threadsBiography = threadsBiography;
099  }
100
101  /**
102   * Returns true if the user is verified on Threads.
103   */
104  @java.lang.SuppressWarnings("all")
105  public Boolean getIsVerified() {
106    return this.isVerified;
107  }
108
109  /**
110   * Returns true if the user is verified on Threads.
111   */
112  @java.lang.SuppressWarnings("all")
113  public void setIsVerified(final Boolean isVerified) {
114    this.isVerified = isVerified;
115  }
116}