ServiceInputOutputSpecificationResponse

data class ServiceInputOutputSpecificationResponse(val description: String? = null, val properties: Map<String, TableSpecificationResponse>, val title: String? = null, val type: String)

The swagger 2.0 schema describing the service's inputs or outputs. See Swagger specification: http://swagger.io/specification/

Constructors

Link copied to clipboard
constructor(description: String? = null, properties: Map<String, TableSpecificationResponse>, title: String? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val description: String? = null

The description of the Swagger schema.

Link copied to clipboard

Specifies a collection that contains the column schema for each input or output of the web service. For more information, see the Swagger specification.

Link copied to clipboard
val title: String? = null

The title of your Swagger schema.

Link copied to clipboard

The type of the entity described in swagger. Always 'object'.