All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zendesk.sunshine_conversations_client.model.Profile Maven / Gradle / Ivy

/*
 * Sunshine Conversations API
 *
 * The version of the OpenAPI document: 12.8.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package com.zendesk.sunshine_conversations_client.model;

import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.net.URI;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

/**
 * Object hosting user profile information.
 */
@ApiModel(description = "Object hosting user profile information.")
@JsonPropertyOrder({
  Profile.JSON_PROPERTY_GIVEN_NAME,
  Profile.JSON_PROPERTY_SURNAME,
  Profile.JSON_PROPERTY_EMAIL,
  Profile.JSON_PROPERTY_AVATAR_URL,
  Profile.JSON_PROPERTY_LOCALE
})

public class Profile {
  public static final String JSON_PROPERTY_GIVEN_NAME = "givenName";
  private JsonNullable givenName = JsonNullable.undefined();

  public static final String JSON_PROPERTY_SURNAME = "surname";
  private JsonNullable surname = JsonNullable.undefined();

  public static final String JSON_PROPERTY_EMAIL = "email";
  private JsonNullable email = JsonNullable.undefined();

  public static final String JSON_PROPERTY_AVATAR_URL = "avatarUrl";
  private JsonNullable avatarUrl = JsonNullable.undefined();

  public static final String JSON_PROPERTY_LOCALE = "locale";
  private JsonNullable locale = JsonNullable.undefined();


  public Profile givenName(String givenName) {
    this.givenName = JsonNullable.of(givenName);
    
    return this;
  }

   /**
   * The user's given name (first name).
   * @return givenName
  **/
  @jakarta.annotation.Nullable
  @ApiModelProperty(example = "Jane", value = "The user's given name (first name).")
  @JsonIgnore

  public String getGivenName() {
        return givenName.orElse(null);
  }

  @JsonProperty(JSON_PROPERTY_GIVEN_NAME)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public JsonNullable getGivenName_JsonNullable() {
    return givenName;
  }
  
  @JsonProperty(JSON_PROPERTY_GIVEN_NAME)
  public void setGivenName_JsonNullable(JsonNullable givenName) {
    this.givenName = givenName;
  }

  public void setGivenName(String givenName) {
    this.givenName = JsonNullable.of(givenName);
  }


  public Profile surname(String surname) {
    this.surname = JsonNullable.of(surname);
    
    return this;
  }

   /**
   * The user's surname (last name).
   * @return surname
  **/
  @jakarta.annotation.Nullable
  @ApiModelProperty(example = "Doe", value = "The user's surname (last name).")
  @JsonIgnore

  public String getSurname() {
        return surname.orElse(null);
  }

  @JsonProperty(JSON_PROPERTY_SURNAME)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public JsonNullable getSurname_JsonNullable() {
    return surname;
  }
  
  @JsonProperty(JSON_PROPERTY_SURNAME)
  public void setSurname_JsonNullable(JsonNullable surname) {
    this.surname = surname;
  }

  public void setSurname(String surname) {
    this.surname = JsonNullable.of(surname);
  }


  public Profile email(String email) {
    this.email = JsonNullable.of(email);
    
    return this;
  }

   /**
   * The user's email address.
   * @return email
  **/
  @jakarta.annotation.Nullable
  @ApiModelProperty(example = "[email protected]", value = "The user's email address.")
  @JsonIgnore

  public String getEmail() {
        return email.orElse(null);
  }

  @JsonProperty(JSON_PROPERTY_EMAIL)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public JsonNullable getEmail_JsonNullable() {
    return email;
  }
  
  @JsonProperty(JSON_PROPERTY_EMAIL)
  public void setEmail_JsonNullable(JsonNullable email) {
    this.email = email;
  }

  public void setEmail(String email) {
    this.email = JsonNullable.of(email);
  }


  public Profile avatarUrl(URI avatarUrl) {
    this.avatarUrl = JsonNullable.of(avatarUrl);
    
    return this;
  }

   /**
   * The user's avatar.
   * @return avatarUrl
  **/
  @jakarta.annotation.Nullable
  @ApiModelProperty(example = "https://s3.amazonaws.com/avatar.jpg", value = "The user's avatar.")
  @JsonIgnore

  public URI getAvatarUrl() {
        return avatarUrl.orElse(null);
  }

  @JsonProperty(JSON_PROPERTY_AVATAR_URL)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public JsonNullable getAvatarUrl_JsonNullable() {
    return avatarUrl;
  }
  
  @JsonProperty(JSON_PROPERTY_AVATAR_URL)
  public void setAvatarUrl_JsonNullable(JsonNullable avatarUrl) {
    this.avatarUrl = avatarUrl;
  }

  public void setAvatarUrl(URI avatarUrl) {
    this.avatarUrl = JsonNullable.of(avatarUrl);
  }


  public Profile locale(String locale) {
    this.locale = JsonNullable.of(locale);
    
    return this;
  }

   /**
   * End-user's locale information in BCP 47 format.
   * @return locale
  **/
  @jakarta.annotation.Nullable
  @ApiModelProperty(example = "fr-CA", value = "End-user's locale information in BCP 47 format.")
  @JsonIgnore

  public String getLocale() {
        return locale.orElse(null);
  }

  @JsonProperty(JSON_PROPERTY_LOCALE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public JsonNullable getLocale_JsonNullable() {
    return locale;
  }
  
  @JsonProperty(JSON_PROPERTY_LOCALE)
  public void setLocale_JsonNullable(JsonNullable locale) {
    this.locale = locale;
  }

  public void setLocale(String locale) {
    this.locale = JsonNullable.of(locale);
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    Profile profile = (Profile) o;
    return Objects.equals(this.givenName, profile.givenName) &&
        Objects.equals(this.surname, profile.surname) &&
        Objects.equals(this.email, profile.email) &&
        Objects.equals(this.avatarUrl, profile.avatarUrl) &&
        Objects.equals(this.locale, profile.locale);
  }

  @Override
  public int hashCode() {
    return Objects.hash(givenName, surname, email, avatarUrl, locale);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class Profile {\n");
    sb.append("    givenName: ").append(toIndentedString(givenName)).append("\n");
    sb.append("    surname: ").append(toIndentedString(surname)).append("\n");
    sb.append("    email: ").append(toIndentedString(email)).append("\n");
    sb.append("    avatarUrl: ").append(toIndentedString(avatarUrl)).append("\n");
    sb.append("    locale: ").append(toIndentedString(locale)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces
   * (except the first line).
   */
  private String toIndentedString(java.lang.Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy