io.swagger.client.model.CategoryParams 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;
/**
* Category parameters
*/
@ApiModel(description = "Category parameters")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-02-05T12:19:21.458Z")
public class CategoryParams {
@SerializedName("name")
private String name = null;
@SerializedName("parentId")
private Long parentId = null;
public CategoryParams name(String name) {
this.name = name;
return this;
}
/**
* Name of the category. Maximum length is 128.
* @return name
**/
@ApiModelProperty(example = "Sport & Fitness", required = true, value = "Name of the category. Maximum length is 128.")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public CategoryParams parentId(Long parentId) {
this.parentId = parentId;
return this;
}
/**
* Identifier of the parent category, if the new category should be created as a sub-category. Must point to a main category in this case. If the new category should be a main category itself, this field must remain unset.
* @return parentId
**/
@ApiModelProperty(example = "373", value = "Identifier of the parent category, if the new category should be created as a sub-category. Must point to a main category in this case. If the new category should be a main category itself, this field must remain unset.")
public Long getParentId() {
return parentId;
}
public void setParentId(Long parentId) {
this.parentId = parentId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CategoryParams categoryParams = (CategoryParams) o;
return Objects.equals(this.name, categoryParams.name) &&
Objects.equals(this.parentId, categoryParams.parentId);
}
@Override
public int hashCode() {
return Objects.hash(name, parentId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CategoryParams {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" parentId: ").append(toIndentedString(parentId)).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 ");
}
}