
com.vk.api.sdk.objects.secure.GiveEventStickerItem 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.
The newest version!
// Autogenerated from vk-api-schema. Please don't edit it manually.
package com.vk.api.sdk.objects.secure;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.vk.api.sdk.objects.Validable;
import java.util.Objects;
/**
* GiveEventStickerItem object
*/
public class GiveEventStickerItem implements Validable {
@SerializedName("status")
private String status;
/**
* Entity: owner
*/
@SerializedName("user_id")
private Long userId;
public String getStatus() {
return status;
}
public GiveEventStickerItem setStatus(String status) {
this.status = status;
return this;
}
public Long getUserId() {
return userId;
}
public GiveEventStickerItem setUserId(Long userId) {
this.userId = userId;
return this;
}
@Override
public int hashCode() {
return Objects.hash(userId, status);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GiveEventStickerItem giveEventStickerItem = (GiveEventStickerItem) o;
return Objects.equals(userId, giveEventStickerItem.userId) &&
Objects.equals(status, giveEventStickerItem.status);
}
@Override
public String toString() {
final Gson gson = new Gson();
return gson.toJson(this);
}
public String toPrettyString() {
final StringBuilder sb = new StringBuilder("GiveEventStickerItem{");
sb.append("userId=").append(userId);
sb.append(", status='").append(status).append("'");
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy