ApiOperationResponse

data class ApiOperationResponse(val description: String? = null, val headers: List<ApiOperationResponseHeader>? = null, val representations: List<ApiOperationResponseRepresentation>? = null, val statusCode: Int)

Constructors

Link copied to clipboard
constructor(description: String? = null, headers: List<ApiOperationResponseHeader>? = null, representations: List<ApiOperationResponseRepresentation>? = null, statusCode: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val description: String? = null

A description of the HTTP Response, which may include HTML tags.

Link copied to clipboard

One or more header blocks as defined above.

Link copied to clipboard

One or more representation blocks as defined above.

Link copied to clipboard

The HTTP Status Code.