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

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

/**
 * Type of sending (delivering) notifications: 'immediately' - push and bell notifications will be delivered as soon as possible, 'delayed' - push and bell notifications will be delivered in the most comfortable time for the user, 'delayed_push' - only push notifications will be delivered in the most comfortable time, while the bell notifications will be delivered as soon as possible
 */
public enum SendMessageSendingMode implements EnumParam {
    @SerializedName("delayed")
    DELAYED("delayed"),

    @SerializedName("delayed_push")
    DELAYED_PUSH("delayed_push"),

    @SerializedName("immediately")
    IMMEDIATELY("immediately"),

    @SerializedName("without_push")
    WITHOUT_PUSH("without_push");

    private final String value;

    SendMessageSendingMode(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy