com.vk.api.sdk.objects.appwidgets.responses.GetGroupImagesResponse 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.appwidgets.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.appwidgets.Photo;
import java.util.List;
import java.util.Objects;
/**
* GetGroupImagesResponse object
*/
public class GetGroupImagesResponse implements Validable {
@SerializedName("count")
private Integer count;
@SerializedName("items")
private List items;
public Integer getCount() {
return count;
}
public GetGroupImagesResponse setCount(Integer count) {
this.count = count;
return this;
}
public List getItems() {
return items;
}
public GetGroupImagesResponse setItems(List items) {
this.items = items;
return this;
}
@Override
public int hashCode() {
return Objects.hash(count, items);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GetGroupImagesResponse getGroupImagesResponse = (GetGroupImagesResponse) o;
return Objects.equals(count, getGroupImagesResponse.count) &&
Objects.equals(items, getGroupImagesResponse.items);
}
@Override
public String toString() {
final Gson gson = new Gson();
return gson.toJson(this);
}
public String toPrettyString() {
final StringBuilder sb = new StringBuilder("GetGroupImagesResponse{");
sb.append("count=").append(count);
sb.append(", items=").append(items);
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy