io.swagger.client.model.ChangeClientCredentialsParams 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;
/**
* Parameters for changing client credentials
*/
@ApiModel(description = "Parameters for changing client credentials")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-02-05T12:19:21.458Z")
public class ChangeClientCredentialsParams {
@SerializedName("clientId")
private String clientId = null;
@SerializedName("oldClientSecret")
private String oldClientSecret = null;
@SerializedName("newClientSecret")
private String newClientSecret = null;
public ChangeClientCredentialsParams clientId(String clientId) {
this.clientId = clientId;
return this;
}
/**
* client_id of the client that you want to change the secret for
* @return clientId
**/
@ApiModelProperty(example = "01234567-89ab-cdef-0123-456789abcdef", required = true, value = "client_id of the client that you want to change the secret for")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public ChangeClientCredentialsParams oldClientSecret(String oldClientSecret) {
this.oldClientSecret = oldClientSecret;
return this;
}
/**
* Old (=current) client_secret
* @return oldClientSecret
**/
@ApiModelProperty(example = "01234567-89ab-cdef-0123-456789abcdef", required = true, value = "Old (=current) client_secret")
public String getOldClientSecret() {
return oldClientSecret;
}
public void setOldClientSecret(String oldClientSecret) {
this.oldClientSecret = oldClientSecret;
}
public ChangeClientCredentialsParams newClientSecret(String newClientSecret) {
this.newClientSecret = newClientSecret;
return this;
}
/**
* New client_secret. Required length is 36. Allowed symbols: Digits (0 through 9), lower-case and upper-case letters (A through Z), and the dash symbol (\"-\").
* @return newClientSecret
**/
@ApiModelProperty(example = "01234567-89ab-cdef-0123-456789abcdef", required = true, value = "New client_secret. Required length is 36. Allowed symbols: Digits (0 through 9), lower-case and upper-case letters (A through Z), and the dash symbol (\"-\").")
public String getNewClientSecret() {
return newClientSecret;
}
public void setNewClientSecret(String newClientSecret) {
this.newClientSecret = newClientSecret;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ChangeClientCredentialsParams changeClientCredentialsParams = (ChangeClientCredentialsParams) o;
return Objects.equals(this.clientId, changeClientCredentialsParams.clientId) &&
Objects.equals(this.oldClientSecret, changeClientCredentialsParams.oldClientSecret) &&
Objects.equals(this.newClientSecret, changeClientCredentialsParams.newClientSecret);
}
@Override
public int hashCode() {
return Objects.hash(clientId, oldClientSecret, newClientSecret);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ChangeClientCredentialsParams {\n");
sb.append(" clientId: ").append(toIndentedString(clientId)).append("\n");
sb.append(" oldClientSecret: ").append(toIndentedString(oldClientSecret)).append("\n");
sb.append(" newClientSecret: ").append(toIndentedString(newClientSecret)).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 ");
}
}