io.swagger.client.model.DistrictAdmin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clever-java Show documentation
Show all versions of clever-java Show documentation
The Clever-Java project is a Java wrapper for the Clever.com API for keeping educational applications rostered and up-to-date.
The newest version!
/*
* Data API
* Serves the Clever Data API
*
* OpenAPI spec version: 2.1.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 com.google.gson.annotations.SerializedName;
import io.swagger.v3.oas.annotations.media.Schema;
/**
* DistrictAdmin
*/
@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2021-06-14T11:42:50.295166-04:00[America/New_York]")
public class DistrictAdmin {
@SerializedName("id")
private String id = null;
@SerializedName("name")
private AdminName name = null;
@SerializedName("email")
private String email = null;
@SerializedName("title")
private String title = null;
@SerializedName("district")
private String district = null;
public DistrictAdmin id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@Schema(description = "")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public DistrictAdmin name(AdminName name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@Schema(description = "")
public AdminName getName() {
return name;
}
public void setName(AdminName name) {
this.name = name;
}
public DistrictAdmin email(String email) {
this.email = email;
return this;
}
/**
* Get email
* @return email
**/
@Schema(description = "")
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public DistrictAdmin title(String title) {
this.title = title;
return this;
}
/**
* Get title
* @return title
**/
@Schema(description = "")
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public DistrictAdmin district(String district) {
this.district = district;
return this;
}
/**
* Get district
* @return district
**/
@Schema(description = "")
public String getDistrict() {
return district;
}
public void setDistrict(String district) {
this.district = district;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DistrictAdmin districtAdmin = (DistrictAdmin) o;
return Objects.equals(this.id, districtAdmin.id) &&
Objects.equals(this.name, districtAdmin.name) &&
Objects.equals(this.email, districtAdmin.email) &&
Objects.equals(this.title, districtAdmin.title) &&
Objects.equals(this.district, districtAdmin.district);
}
@Override
public int hashCode() {
return Objects.hash(id, name, email, title, district);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DistrictAdmin {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" email: ").append(toIndentedString(email)).append("\n");
sb.append(" title: ").append(toIndentedString(title)).append("\n");
sb.append(" district: ").append(toIndentedString(district)).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 ");
}
}