discord-jadx/app/src/main/java/com/discord/api/report/ReportType.java

17 lines
353 B
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package com.discord.api.report;
/* compiled from: InAppReportsMenu.kt */
public enum ReportType {
Message("message"),
StageChannel("stage_channel");
private final String pathValue;
private ReportType(String str) {
this.pathValue = str;
}
public final String getPathValue() {
return this.pathValue;
}
}