
org.touchbit.testrail4j.gson.model.TRTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gson-api-model Show documentation
Show all versions of gson-api-model Show documentation
Gson annotation models for TestRail API
The newest version!
package org.touchbit.testrail4j.gson.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class TRTemplate {
/**
*
* (Required)
*
*/
@SerializedName("id")
@Expose
private Long id;
/**
*
* (Required)
*
*/
@SerializedName("is_default")
@Expose
private Boolean isDefault;
/**
*
* (Required)
*
*/
@SerializedName("name")
@Expose
private String name;
/**
* No args constructor for use in serialization
*
*/
public TRTemplate() {
}
/**
*
* @param isDefault
* @param name
* @param id
*/
public TRTemplate(Long id, Boolean isDefault, String name) {
super();
this.id = id;
this.isDefault = isDefault;
this.name = name;
}
/**
*
* (Required)
*
*/
public Long getId() {
return id;
}
/**
*
* (Required)
*
*/
public void setId(Long id) {
this.id = id;
}
public TRTemplate withId(Long id) {
this.id = id;
return this;
}
/**
*
* (Required)
*
*/
public Boolean getIsDefault() {
return isDefault;
}
/**
*
* (Required)
*
*/
public void setIsDefault(Boolean isDefault) {
this.isDefault = isDefault;
}
public TRTemplate withIsDefault(Boolean isDefault) {
this.isDefault = isDefault;
return this;
}
/**
*
* (Required)
*
*/
public String getName() {
return name;
}
/**
*
* (Required)
*
*/
public void setName(String name) {
this.name = name;
}
public TRTemplate withName(String name) {
this.name = name;
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(TRTemplate.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("id");
sb.append('=');
sb.append(((this.id == null)?"":this.id));
sb.append(',');
sb.append("isDefault");
sb.append('=');
sb.append(((this.isDefault == null)?"":this.isDefault));
sb.append(',');
sb.append("name");
sb.append('=');
sb.append(((this.name == null)?"":this.name));
sb.append(',');
if (sb.charAt((sb.length()- 1)) == ',') {
sb.setCharAt((sb.length()- 1), ']');
} else {
sb.append(']');
}
return sb.toString();
}
@Override
public int hashCode() {
int result = 1;
result = ((result* 31)+((this.name == null)? 0 :this.name.hashCode()));
result = ((result* 31)+((this.isDefault == null)? 0 :this.isDefault.hashCode()));
result = ((result* 31)+((this.id == null)? 0 :this.id.hashCode()));
return result;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof TRTemplate) == false) {
return false;
}
TRTemplate rhs = ((TRTemplate) other);
return ((((this.name == rhs.name)||((this.name!= null)&&this.name.equals(rhs.name)))&&((this.isDefault == rhs.isDefault)||((this.isDefault!= null)&&this.isDefault.equals(rhs.isDefault))))&&((this.id == rhs.id)||((this.id!= null)&&this.id.equals(rhs.id))));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy