package com.discord.api.friendsuggestions; /* compiled from: AllowedInSuggestionsType.kt */ public enum AllowedInSuggestionsType { DISABLED(-1), MUTUAL_CONTACT_INFO_ONLY(1), ANYONE_WITH_CONTACT_INFO(2); private final int apiValue; private AllowedInSuggestionsType(int i) { this.apiValue = i; } public final int getApiValue() { return this.apiValue; } }