ArgumentResponse

data class ArgumentResponse(val argumentKind: String, val dataType: StandardSqlDataTypeResponse, val mode: String, val name: String)

Input/output argument of a function or a stored procedure.

Constructors

Link copied to clipboard
fun ArgumentResponse(argumentKind: String, dataType: StandardSqlDataTypeResponse, mode: String, name: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Optional. Defaults to FIXED_TYPE.

Link copied to clipboard

Required unless argument_kind = ANY_TYPE.

Link copied to clipboard

Optional. Specifies whether the argument is input or output. Can be set for procedures only.

Link copied to clipboard

Optional. The name of this argument. Can be absent for function return argument.