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

com.tinypass.client.id.model.SocialLinkingResponse Maven / Gradle / Ivy

There is a newer version: 16.366.0
Show newest version
package com.tinypass.client.id.model;

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.util.ArrayList;
import java.util.List;

public class SocialLinkingResponse {

    private String identitySocialLinkingState = null;
  

    private Boolean passwordConfirmationAvailable = null;
  

    private List linkedSocialAccounts = new ArrayList();
  

    private String email = null;
  

    private String firstName = null;
  

    private String lastName = null;
  

    private String socialType = null;
  

    private Boolean isPasswordless = null;
  


  public String getIdentitySocialLinkingState() {
    return identitySocialLinkingState;
  }
  public void setIdentitySocialLinkingState(String identitySocialLinkingState) {
    this.identitySocialLinkingState = identitySocialLinkingState;
  }


  public Boolean getPasswordConfirmationAvailable() {
    return passwordConfirmationAvailable;
  }
  public void setPasswordConfirmationAvailable(Boolean passwordConfirmationAvailable) {
    this.passwordConfirmationAvailable = passwordConfirmationAvailable;
  }


  public List getLinkedSocialAccounts() {
    return linkedSocialAccounts;
  }
  public void setLinkedSocialAccounts(List linkedSocialAccounts) {
    this.linkedSocialAccounts = linkedSocialAccounts;
  }


  public String getEmail() {
    return email;
  }
  public void setEmail(String email) {
    this.email = email;
  }


  public String getFirstName() {
    return firstName;
  }
  public void setFirstName(String firstName) {
    this.firstName = firstName;
  }


  public String getLastName() {
    return lastName;
  }
  public void setLastName(String lastName) {
    this.lastName = lastName;
  }


  public String getSocialType() {
    return socialType;
  }
  public void setSocialType(String socialType) {
    this.socialType = socialType;
  }


  public Boolean getIsPasswordless() {
    return isPasswordless;
  }
  public void setIsPasswordless(Boolean isPasswordless) {
    this.isPasswordless = isPasswordless;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class SocialLinkingResponse {\n");
    sb.append("  identitySocialLinkingState: ").append(identitySocialLinkingState).append("\n");
    sb.append("  passwordConfirmationAvailable: ").append(passwordConfirmationAvailable).append("\n");
    sb.append("  linkedSocialAccounts: ").append(linkedSocialAccounts).append("\n");
    sb.append("  email: ").append(email).append("\n");
    sb.append("  firstName: ").append(firstName).append("\n");
    sb.append("  lastName: ").append(lastName).append("\n");
    sb.append("  socialType: ").append(socialType).append("\n");
    sb.append("  isPasswordless: ").append(isPasswordless).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy