
com.vk.api.sdk.objects.stories.responses.SaveResponse Maven / Gradle / Ivy
// Autogenerated from vk-api-schema. Please don't edit it manually.
package com.vk.api.sdk.objects.stories.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.Group;
import com.vk.api.sdk.objects.stories.Story;
import com.vk.api.sdk.objects.users.User;
import java.util.List;
import java.util.Objects;
/**
* SaveResponse object
*/
public class SaveResponse implements Validable {
@SerializedName("count")
@Required
private Integer count;
@SerializedName("items")
@Required
private List items;
@SerializedName("profiles")
private List profiles;
@SerializedName("groups")
private List groups;
public Integer getCount() {
return count;
}
public SaveResponse setCount(Integer count) {
this.count = count;
return this;
}
public List getItems() {
return items;
}
public SaveResponse setItems(List items) {
this.items = items;
return this;
}
public List getProfiles() {
return profiles;
}
public SaveResponse setProfiles(List profiles) {
this.profiles = profiles;
return this;
}
public List getGroups() {
return groups;
}
public SaveResponse setGroups(List groups) {
this.groups = groups;
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;
SaveResponse saveResponse = (SaveResponse) o;
return Objects.equals(count, saveResponse.count) &&
Objects.equals(profiles, saveResponse.profiles) &&
Objects.equals(groups, saveResponse.groups) &&
Objects.equals(items, saveResponse.items);
}
@Override
public String toString() {
final Gson gson = new Gson();
return gson.toJson(this);
}
public String toPrettyString() {
final StringBuilder sb = new StringBuilder("SaveResponse{");
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