001package com.box.sdk;
002
003/**
004 * Enum to represent the JWT entity type for BoxDeveloperEditionAPIConnection.
005 */
006public enum DeveloperEditionEntityType {
007
008    /**
009     * Represents the entity type enterprise.
010     */
011    ENTERPRISE("enterprise"),
012
013    /**
014     * Represents the entity type user.
015     */
016    USER("user");
017
018    private final String value;
019
020    /**
021     * @param value
022     */
023    DeveloperEditionEntityType(String value) {
024        this.value = value;
025    }
026
027    /**
028     * To get the string value for the enum type.
029     *
030     * @return The string value for the enum type
031     */
032    @Override
033    public String toString() {
034        return this.value;
035    }
036}