io.wisetime.generated.connect.TeamInfoResult Maven / Gradle / Ivy
package io.wisetime.generated.connect;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import javax.validation.constraints.*;
import javax.validation.Valid;
import io.swagger.annotations.*;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
public class TeamInfoResult {
private @Valid String teamName;
/**
**/
public TeamInfoResult teamName(String teamName) {
this.teamName = teamName;
return this;
}
@ApiModelProperty(value = "")
@JsonProperty("teamName")
public String getTeamName() {
return teamName;
}
public void setTeamName(String teamName) {
this.teamName = teamName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TeamInfoResult teamInfoResult = (TeamInfoResult) o;
return Objects.equals(teamName, teamInfoResult.teamName);
}
@Override
public int hashCode() {
return Objects.hash(teamName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TeamInfoResult {\n");
sb.append(" teamName: ").append(toIndentedString(teamName)).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 ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy