com.vk.api.sdk.objects.messages.responses.GetByIdExtendedResponse 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.messages.responses;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.vk.api.sdk.objects.Validable;
import com.vk.api.sdk.objects.annotations.Required;
import com.vk.api.sdk.objects.groups.GroupFull;
import com.vk.api.sdk.objects.messages.Message;
import com.vk.api.sdk.objects.users.UserFull;
import java.util.List;
import java.util.Objects;
/**
* GetByIdExtendedResponse object
*/
public class GetByIdExtendedResponse implements Validable {
/**
* Total number
*/
@SerializedName("count")
@Required
private Integer count;
@SerializedName("groups")
private List groups;
@SerializedName("items")
@Required
private List items;
@SerializedName("profiles")
private List profiles;
public Integer getCount() {
return count;
}
public GetByIdExtendedResponse setCount(Integer count) {
this.count = count;
return this;
}
public List getGroups() {
return groups;
}
public GetByIdExtendedResponse setGroups(List groups) {
this.groups = groups;
return this;
}
public List getItems() {
return items;
}
public GetByIdExtendedResponse setItems(List items) {
this.items = items;
return this;
}
public List getProfiles() {
return profiles;
}
public GetByIdExtendedResponse setProfiles(List profiles) {
this.profiles = profiles;
return this;
}
@Override
public int hashCode() {
return Objects.hash(count, profiles, groups, items);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GetByIdExtendedResponse getByIdExtendedResponse = (GetByIdExtendedResponse) o;
return Objects.equals(count, getByIdExtendedResponse.count) &&
Objects.equals(profiles, getByIdExtendedResponse.profiles) &&
Objects.equals(groups, getByIdExtendedResponse.groups) &&
Objects.equals(items, getByIdExtendedResponse.items);
}
@Override
public String toString() {
final Gson gson = new Gson();
return gson.toJson(this);
}
public String toPrettyString() {
final StringBuilder sb = new StringBuilder("GetByIdExtendedResponse{");
sb.append("count=").append(count);
sb.append(", profiles=").append(profiles);
sb.append(", groups=").append(groups);
sb.append(", items=").append(items);
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy