discord-jadx/app/src/main/java/com/discord/api/guildscheduledevent/GuildScheduledEventEntityTy...

30 lines
750 B
Java

package com.discord.api.guildscheduledevent;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* compiled from: GuildScheduledEventEntityType.kt */
public enum GuildScheduledEventEntityType {
NONE(0),
STAGE_INSTANCE(1),
UNKNOWN(-1);
public static final Companion Companion = new Companion(null);
private final int apiValue;
/* compiled from: GuildScheduledEventEntityType.kt */
public static final class Companion {
public Companion() {
}
public Companion(DefaultConstructorMarker defaultConstructorMarker) {
}
}
private GuildScheduledEventEntityType(int i) {
this.apiValue = i;
}
public final int getApiValue() {
return this.apiValue;
}
}