com.vk.api.sdk.objects.messages.ReactionResponseItem 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;
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 java.util.Objects;
/**
* ReactionResponseItem object
*/
public class ReactionResponseItem implements Validable {
@SerializedName("reaction_id")
@Required
private Integer reactionId;
/**
* Entity: owner
*/
@SerializedName("user_id")
@Required
private Long userId;
public Integer getReactionId() {
return reactionId;
}
public ReactionResponseItem setReactionId(Integer reactionId) {
this.reactionId = reactionId;
return this;
}
public Long getUserId() {
return userId;
}
public ReactionResponseItem setUserId(Long userId) {
this.userId = userId;
return this;
}
@Override
public int hashCode() {
return Objects.hash(reactionId, userId);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ReactionResponseItem reactionResponseItem = (ReactionResponseItem) o;
return Objects.equals(reactionId, reactionResponseItem.reactionId) &&
Objects.equals(userId, reactionResponseItem.userId);
}
@Override
public String toString() {
final Gson gson = new Gson();
return gson.toJson(this);
}
public String toPrettyString() {
final StringBuilder sb = new StringBuilder("ReactionResponseItem{");
sb.append("reactionId=").append(reactionId);
sb.append(", userId=").append(userId);
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy