value property

String? value

The actual value/key for the API lookup service in Tautulli.

Implementation

String? get value {
    switch(this) {
        case TautulliAPILookupService.THEMOVIEDB: return 'themoviedb';
        case TautulliAPILookupService.TVMAZE: return 'tvmaze';
        case TautulliAPILookupService.MUSICBRAINZ: return 'musicbrainz';
        case TautulliAPILookupService.NULL: return '';
    }
}