io.swagger.client.model.User Maven / Gradle / Ivy
/*
* finAPI RESTful Services
* finAPI RESTful Services
*
* OpenAPI spec version: v1.64.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.swagger.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Container for a user's data
*/
@ApiModel(description = "Container for a user's data")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-02-05T12:19:21.458Z")
public class User {
@SerializedName("id")
private String id = null;
@SerializedName("password")
private String password = null;
@SerializedName("email")
private String email = null;
@SerializedName("phone")
private String phone = null;
@SerializedName("isAutoUpdateEnabled")
private Boolean isAutoUpdateEnabled = null;
public User id(String id) {
this.id = id;
return this;
}
/**
* User identifier
* @return id
**/
@ApiModelProperty(example = "username", required = true, value = "User identifier")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public User password(String password) {
this.password = password;
return this;
}
/**
* User's password. Please note that some services may return a distorted password (always 'XXXXX'). See the documentation of individual services to find out whether the password is returned as plain text or as 'XXXXX'.
* @return password
**/
@ApiModelProperty(example = "password", required = true, value = "User's password. Please note that some services may return a distorted password (always 'XXXXX'). See the documentation of individual services to find out whether the password is returned as plain text or as 'XXXXX'.")
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public User email(String email) {
this.email = email;
return this;
}
/**
* User's email address
* @return email
**/
@ApiModelProperty(example = "[email protected]", value = "User's email address")
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public User phone(String phone) {
this.phone = phone;
return this;
}
/**
* User's phone number
* @return phone
**/
@ApiModelProperty(example = "+49 99 999999-999", value = "User's phone number")
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public User isAutoUpdateEnabled(Boolean isAutoUpdateEnabled) {
this.isAutoUpdateEnabled = isAutoUpdateEnabled;
return this;
}
/**
* Whether the user's bank connections will get updated in the course of finAPI's automatic batch update. Note that the automatic batch update will only update bank connections where all of the following applies:<br><br> - the PIN is stored in finAPI for the bank connection, and the related bank does not have volatile PINs (see the ‘pinsAreVolatile’ flag of the Bank Resource)<br> - the user has accepted the latest Terms and Conditions (this only applies to users whose mandator has PISP license or doesn't have a license at all)<br> - the user has allowed finAPI to use his old stored credentials (this only applies to users which had stored credentials before introducing a web form feature and whose mandator has PISP license or doesn't have a license at all)<br> - the previous update using the stored credentials did not fail due to the credentials being incorrect (or there was no previous update with the stored credentials)<br> - the bank that the bank connection relates to is included in the automatic batch update (please contact your Sys-Admin for details about the batch update configuration)<br> - at least one of the bank's supported data sources can be used by finAPI for your client (i.e.: if a bank supports only web scraping, but web scraping is disabled for your client, then bank connections of that bank will not get updated by the automatic batch update)<br><br>Also note that the automatic batch update must generally be enabled for your client in order for this field to have any effect.<br/><br/>WARNING: The automatic update will always download transactions and security positions for any account that it updates! This means that the user will no longer be able to download just the balances for his accounts once the automatic update has run (The 'skipPositionsDownload' flag in the bankConnections/update service can no longer be set to true).
* @return isAutoUpdateEnabled
**/
@ApiModelProperty(example = "true", required = true, value = "Whether the user's bank connections will get updated in the course of finAPI's automatic batch update. Note that the automatic batch update will only update bank connections where all of the following applies:
- the PIN is stored in finAPI for the bank connection, and the related bank does not have volatile PINs (see the ‘pinsAreVolatile’ flag of the Bank Resource)
- the user has accepted the latest Terms and Conditions (this only applies to users whose mandator has PISP license or doesn't have a license at all)
- the user has allowed finAPI to use his old stored credentials (this only applies to users which had stored credentials before introducing a web form feature and whose mandator has PISP license or doesn't have a license at all)
- the previous update using the stored credentials did not fail due to the credentials being incorrect (or there was no previous update with the stored credentials)
- the bank that the bank connection relates to is included in the automatic batch update (please contact your Sys-Admin for details about the batch update configuration)
- at least one of the bank's supported data sources can be used by finAPI for your client (i.e.: if a bank supports only web scraping, but web scraping is disabled for your client, then bank connections of that bank will not get updated by the automatic batch update)
Also note that the automatic batch update must generally be enabled for your client in order for this field to have any effect.
WARNING: The automatic update will always download transactions and security positions for any account that it updates! This means that the user will no longer be able to download just the balances for his accounts once the automatic update has run (The 'skipPositionsDownload' flag in the bankConnections/update service can no longer be set to true).")
public Boolean isIsAutoUpdateEnabled() {
return isAutoUpdateEnabled;
}
public void setIsAutoUpdateEnabled(Boolean isAutoUpdateEnabled) {
this.isAutoUpdateEnabled = isAutoUpdateEnabled;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
User user = (User) o;
return Objects.equals(this.id, user.id) &&
Objects.equals(this.password, user.password) &&
Objects.equals(this.email, user.email) &&
Objects.equals(this.phone, user.phone) &&
Objects.equals(this.isAutoUpdateEnabled, user.isAutoUpdateEnabled);
}
@Override
public int hashCode() {
return Objects.hash(id, password, email, phone, isAutoUpdateEnabled);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class User {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" password: ").append(toIndentedString(password)).append("\n");
sb.append(" email: ").append(toIndentedString(email)).append("\n");
sb.append(" phone: ").append(toIndentedString(phone)).append("\n");
sb.append(" isAutoUpdateEnabled: ").append(toIndentedString(isAutoUpdateEnabled)).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 ");
}
}