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

com.github.jamesnetherton.zulip.client.api.user.DemoteInactiveStreamOption Maven / Gradle / Ivy

The newest version!
package com.github.jamesnetherton.zulip.client.api.user;

/**
 * Options for the control of inactive stream demotion.
 */
public enum DemoteInactiveStreamOption {
    AUTOMATIC(1),
    ALWAYS(2),
    NEVER(3);

    private final int id;

    private DemoteInactiveStreamOption(int id) {
        this.id = id;
    }

    public int getId() {
        return id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy