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

com.vk.api.sdk.objects.polls.CreateBackgroundId Maven / Gradle / Ivy

Go to download

Java library for VK API interaction, includes OAuth 2.0 authorization and API methods.

There is a newer version: 1.0.16
Show newest version
// Autogenerated from vk-api-schema. Please don't edit it manually.
package com.vk.api.sdk.objects.polls;

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

public enum CreateBackgroundId implements EnumParam {
    @SerializedName("1")
    _1("1"),

    @SerializedName("2")
    _2("2"),

    @SerializedName("3")
    _3("3"),

    @SerializedName("4")
    _4("4"),

    @SerializedName("6")
    _6("6"),

    @SerializedName("8")
    _8("8"),

    @SerializedName("9")
    _9("9");

    private final String value;

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

    public String getValue() {
        return value;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy