io.sentry.SentryItemType Maven / Gradle / Ivy
package io.sentry;
import org.jetbrains.annotations.ApiStatus;
@ApiStatus.Internal
public enum SentryItemType {
Session("session"),
Event("event"), // DataCategory.Error
UserFeedback("user_report"), // Sentry backend still uses user_report
Attachment("attachment"),
Transaction("transaction"),
Unknown("__unknown__"); // DataCategory.Unknown
private final String itemType;
SentryItemType(final String itemType) {
this.itemType = itemType;
}
public String getItemType() {
return itemType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy