name property

String? name

Readable version of the transcode decision.

Implementation

String? get name {
    switch(this) {
        case TautulliTranscodeDecision.TRANSCODE: return 'Transcode';
        case TautulliTranscodeDecision.COPY: return 'Direct Stream';
        case TautulliTranscodeDecision.DIRECT_PLAY: return 'Direct Play';
        case TautulliTranscodeDecision.BURN: return 'Burn';
        case TautulliTranscodeDecision.NULL: return 'None';
    }
}