// 
// Decompiled by Procyon v0.6.0
// 

package io.sentry;

import org.jetbrains.annotations.NotNull;
import java.util.Locale;

public enum CheckInStatus
{
    IN_PROGRESS, 
    OK, 
    ERROR;
    
    @NotNull
    public String apiName() {
        return this.name().toLowerCase(Locale.ROOT);
    }
}
