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

com.vk.api.sdk.objects.groups.responses.GetCatalogInfoResponse 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.groups.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 com.vk.api.sdk.objects.base.BoolInt;
import com.vk.api.sdk.objects.groups.GroupCategory;
import java.util.List;
import java.util.Objects;

/**
 * GetCatalogInfoResponse object
 */
public class GetCatalogInfoResponse implements Validable {
    @SerializedName("categories")
    private List categories;

    /**
     * Information whether catalog is enabled for current user
     */
    @SerializedName("enabled")
    @Required
    private BoolInt enabled;

    public List getCategories() {
        return categories;
    }

    public GetCatalogInfoResponse setCategories(List categories) {
        this.categories = categories;
        return this;
    }

    public boolean isEnabled() {
        return enabled == BoolInt.YES;
    }

    public BoolInt getEnabled() {
        return enabled;
    }

    @Override
    public int hashCode() {
        return Objects.hash(categories, enabled);
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        GetCatalogInfoResponse getCatalogInfoResponse = (GetCatalogInfoResponse) o;
        return Objects.equals(categories, getCatalogInfoResponse.categories) &&
                Objects.equals(enabled, getCatalogInfoResponse.enabled);
    }

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

    public String toPrettyString() {
        final StringBuilder sb = new StringBuilder("GetCatalogInfoResponse{");
        sb.append("categories=").append(categories);
        sb.append(", enabled=").append(enabled);
        sb.append('}');
        return sb.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy