All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vk.api.sdk.objects.video.responses.AddAlbumResponse Maven / Gradle / Ivy

Go to download

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.video.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 java.util.Objects;

/**
 * AddAlbumResponse object
 */
public class AddAlbumResponse implements Validable {
    /**
     * Created album ID
     */
    @SerializedName("album_id")
    @Required
    private Integer albumId;

    public Integer getAlbumId() {
        return albumId;
    }

    public AddAlbumResponse setAlbumId(Integer albumId) {
        this.albumId = albumId;
        return this;
    }

    @Override
    public int hashCode() {
        return Objects.hash(albumId);
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        AddAlbumResponse addAlbumResponse = (AddAlbumResponse) o;
        return Objects.equals(albumId, addAlbumResponse.albumId);
    }

    @Override
    public String toString() {
        final Gson gson = new Gson();
        return gson.toJson(this);
    }

    public String toPrettyString() {
        final StringBuilder sb = new StringBuilder("AddAlbumResponse{");
        sb.append("albumId=").append(albumId);
        sb.append('}');
        return sb.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy