All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.malinskiy.marathon.execution.Attachment.kt Maven / Gradle / Ivy

There is a newer version: 0.9.1
Show newest version
package com.malinskiy.marathon.execution

import java.io.File

data class Attachment(val file: File, val type: AttachmentType)

enum class AttachmentType {
    SCREENSHOT,
    VIDEO,
    LOG;

    fun toMimeType() = when (this) {
        SCREENSHOT -> "image/gif"
        VIDEO -> "video/mp4"
        LOG -> "text/txt"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy