mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
14 lines
229 B
Java
14 lines
229 B
Java
package io.sentry;
|
|
|
|
import java.util.Locale;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public enum CheckInStatus {
|
|
IN_PROGRESS,
|
|
OK,
|
|
ERROR;
|
|
|
|
public String apiName() {
|
|
return name().toLowerCase(Locale.ROOT);
|
|
}
|
|
}
|