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

com.vk.api.sdk.objects.apps.responses.CreatedGroupResponse 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.apps.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;

/**
 * CreatedGroupResponse object
 */
public class CreatedGroupResponse implements Validable {
    /**
     * Entity: groups
     */
    @SerializedName("group_id")
    @Required
    private Long groupId;

    public Long getGroupId() {
        return groupId;
    }

    public CreatedGroupResponse setGroupId(Long groupId) {
        this.groupId = groupId;
        return this;
    }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy