DocumentParameter

data class DocumentParameter(val defaultValue: String? = null, val description: String? = null, val name: String? = null, val type: String? = null)

Constructors

Link copied to clipboard
constructor(defaultValue: String? = null, description: String? = null, name: String? = null, type: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val defaultValue: String? = null

If specified, the default values for the parameters. Parameters without a default value are required. Parameters with a default value are optional.

Link copied to clipboard
val description: String? = null

A description of what the parameter does, how to use it, the default value, and whether or not the parameter is optional.

Link copied to clipboard
val name: String? = null

The name of the document.

Link copied to clipboard
val type: String? = null

The type of parameter. Valid values: String, StringList.