ApplicationParameter.InputFile

API: Internal/Beta

An input parameter which accepts UFiles of type FILE

data class InputFile(
    val name: String?,
    val optional: Boolean?,
    val defaultValue: Any?,
    val title: String?,
    val description: String?,
    val type: String /* "input_file" */,
)

Compatible with: AppParameterValue.File

Properties
name: String?
optional: Boolean?
defaultValue: Any?
title: String?
description: String?
type: String /* "input_file" */ The type discriminator

API: Stable