ApiOperationRequestRepresentationFormParameter

data class ApiOperationRequestRepresentationFormParameter(val defaultValue: String? = null, val description: String? = null, val examples: List<ApiOperationRequestRepresentationFormParameterExample>? = null, val name: String, val required: Boolean, val schemaId: String? = null, val type: String, val typeName: String? = null, val values: List<String>? = null)

Constructors

constructor(defaultValue: String? = null, description: String? = null, examples: List<ApiOperationRequestRepresentationFormParameterExample>? = null, name: String, required: Boolean, schemaId: String? = null, type: String, typeName: String? = null, values: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val defaultValue: String? = null

The default value for this Form Parameter.

Link copied to clipboard
val description: String? = null

A description of this Form Parameter.

Link copied to clipboard

One or more example blocks as defined above.

Link copied to clipboard

The Name of this Form Parameter.

Link copied to clipboard

Is this Form Parameter Required?

Link copied to clipboard
val schemaId: String? = null

The name of the Schema.

Link copied to clipboard

The Type of this Form Parameter, such as a string.

Link copied to clipboard
val typeName: String? = null

The type name defined by the Schema.

Link copied to clipboard
val values: List<String>? = null

One or more acceptable values for this Form Parameter.