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

package io.sentry;

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

public enum MonitorScheduleType
{
    CRONTAB, 
    INTERVAL;
    
    @NotNull
    public String apiName() {
        return this.name().toLowerCase(Locale.ROOT);
    }
}
