HeaderActionResponse

data class HeaderActionResponse(val headerActionType: String, val headerName: String, val value: String? = null)

An action that can manipulate an http header.

Constructors

Link copied to clipboard
constructor(headerActionType: String, headerName: String, value: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Which type of manipulation to apply to the header.

Link copied to clipboard

The name of the header this action will apply to.

Link copied to clipboard
val value: String? = null

The value to update the given header name with. This value is not used if the actionType is Delete.