discord-jadx/app/src/main/java/com/discord/api/friendsuggestions/AllowedInSuggestionsType.java

18 lines
408 B
Java

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;
}
}