
com.vk.api.sdk.objects.database.Faculty 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;
/**
* Faculty object
*/
public class Faculty implements Validable {
/**
* Faculty ID
*/
@SerializedName("id")
private Integer id;
/**
* Faculty title
*/
@SerializedName("title")
private String title;
public Integer getId() {
return id;
}
public Faculty setId(Integer id) {
this.id = id;
return this;
}
public String getTitle() {
return title;
}
public Faculty 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;
Faculty faculty = (Faculty) o;
return Objects.equals(id, faculty.id) &&
Objects.equals(title, faculty.title);
}
@Override
public String toString() {
final Gson gson = new Gson();
return gson.toJson(this);
}
public String toPrettyString() {
final StringBuilder sb = new StringBuilder("Faculty{");
sb.append("id=").append(id);
sb.append(", title='").append(title).append("'");
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy