value property

String? value

The actual value/key for notification log order column used in Tautulli.

Implementation

String? get value {
    switch(this) {
        case TautulliNotificationLogOrderColumn.TIMESTAMP: return 'timestamp';
        case TautulliNotificationLogOrderColumn.NOTIFIER_ID: return 'notifier_id';
        case TautulliNotificationLogOrderColumn.AGENT_NAME: return 'agent_name';
        case TautulliNotificationLogOrderColumn.NOTIFY_ACTION: return 'notify_action';
        case TautulliNotificationLogOrderColumn.SUBJECT_TEXT: return 'subject_text';
        case TautulliNotificationLogOrderColumn.BODY_TEXT: return 'body_text';
        case TautulliNotificationLogOrderColumn.NULL: return '';
    }
}