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