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

com.vk.api.sdk.objects.notifications.SendMessageErrorCode 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.notifications;

import com.google.gson.annotations.SerializedName;
import com.vk.api.sdk.queries.EnumParam;

/**
 * Error code
 */
public enum SendMessageErrorCode implements EnumParam {
    @SerializedName("1")
    NOTIFICATIONS_DISABLED(1),

    @SerializedName("2")
    FLOOD_CONTROL_PER_HOUR(2),

    @SerializedName("3")
    FLOOD_CONTROL_PER_DAY(3),

    @SerializedName("4")
    APP_IS_NOT_INSTALLED(4);

    private final Integer value;

    SendMessageErrorCode(Integer value) {
        this.value = value;
    }

    public Integer getValue() {
        return value;
    }

    @Override
    public String toString() {
        return value.toString().toLowerCase();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy