key property

String get key

Implementation

String get key {
    switch(this) {
        case RadarrQueueRecordStatus.COMPLETED: return 'completed';
        case RadarrQueueRecordStatus.DELAY: return 'delay';
        case RadarrQueueRecordStatus.DOWNLOAD_CLIENT_UNAVAILABLE: return 'DownloadClientUnavailable';
        case RadarrQueueRecordStatus.DOWNLOADING: return 'downloading';
        case RadarrQueueRecordStatus.FAILED: return 'failed';
        case RadarrQueueRecordStatus.PAUSED: return 'paused';
        case RadarrQueueRecordStatus.QUEUED: return 'queued';
        case RadarrQueueRecordStatus.WARNING: return 'warning';
    }
}