
com.vk.api.sdk.objects.newsfeed.ItemWallpost 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.newsfeed;
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.wall.WallpostFull;
import java.util.Objects;
/**
* ItemWallpost object
*/
public class ItemWallpost extends WallpostFull implements NewsfeedItem, Validable {
/**
* Item source ID
* Entity: owner
*/
@SerializedName("source_id")
@Required
private Long sourceId;
public Long getSourceId() {
return sourceId;
}
public ItemWallpost setSourceId(Long sourceId) {
this.sourceId = sourceId;
return this;
}
@Override
public int hashCode() {
return Objects.hash(sourceId);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ItemWallpost itemWallpost = (ItemWallpost) o;
return Objects.equals(sourceId, itemWallpost.sourceId);
}
@Override
public String toString() {
final Gson gson = new Gson();
return gson.toJson(this);
}
public String toPrettyString() {
final StringBuilder sb = new StringBuilder("ItemWallpost{");
sb.append("sourceId=").append(sourceId);
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy