com.vk.api.sdk.objects.secure.responses.GiveEventStickerResponse 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.secure.responses;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.vk.api.sdk.objects.Validable;
import java.util.Objects;
/**
* GiveEventStickerResponse object
*/
public class GiveEventStickerResponse implements Validable {
@SerializedName("status")
private String status;
/**
* Entity: owner
*/
@SerializedName("user_id")
private Long userId;
public String getStatus() {
return status;
}
public GiveEventStickerResponse setStatus(String status) {
this.status = status;
return this;
}
public Long getUserId() {
return userId;
}
public GiveEventStickerResponse 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;
GiveEventStickerResponse giveEventStickerResponse = (GiveEventStickerResponse) o;
return Objects.equals(userId, giveEventStickerResponse.userId) &&
Objects.equals(status, giveEventStickerResponse.status);
}
@Override
public String toString() {
final Gson gson = new Gson();
return gson.toJson(this);
}
public String toPrettyString() {
final StringBuilder sb = new StringBuilder("GiveEventStickerResponse{");
sb.append("userId=").append(userId);
sb.append(", status='").append(status).append("'");
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy