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

com.github.jamesnetherton.zulip.client.api.stream.RetentionPolicy Maven / Gradle / Ivy

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

/**
 * Defines the type of message retention policy.
 *
 * See https://zulip.com/help/message-retention-policy
 */
public enum RetentionPolicy {
    /**
     * Retain unlimited messages.
     */
    UNLIMITED,

    /**
     * Use organization level message retention defaults.
     */
    REALM_DEFAULT;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy