com.vk.api.sdk.objects.database.School Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Java library for VK API interaction, includes OAuth 2.0 authorization and API methods.
// Autogenerated from vk-api-schema. Please don't edit it manually.
package com.vk.api.sdk.objects.database;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.vk.api.sdk.objects.Validable;
import java.util.Objects;
/**
* School object
*/
public class School implements Validable {
/**
* School ID
*/
@SerializedName("id")
private Integer id;
/**
* School title
*/
@SerializedName("title")
private String title;
public Integer getId() {
return id;
}
public School setId(Integer id) {
this.id = id;
return this;
}
public String getTitle() {
return title;
}
public School setTitle(String title) {
this.title = title;
return this;
}
@Override
public int hashCode() {
return Objects.hash(id, title);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
School school = (School) o;
return Objects.equals(id, school.id) &&
Objects.equals(title, school.title);
}
@Override
public String toString() {
final Gson gson = new Gson();
return gson.toJson(this);
}
public String toPrettyString() {
final StringBuilder sb = new StringBuilder("School{");
sb.append("id=").append(id);
sb.append(", title='").append(title).append("'");
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy