ApiRequestConfig

data class ApiRequestConfig(val bodyFormat: String? = null, val method: String, val mode: String, val path: String, val protocol: String)

Constructors

Link copied to clipboard
constructor(bodyFormat: String? = null, method: String, mode: String, path: String, protocol: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val bodyFormat: String? = null

The body format of the api, which support the values of 'STREAM' and 'FORM'.

Link copied to clipboard

The method of the api, including 'GET','POST','PUT' etc.

Link copied to clipboard

The mode of the parameters between request parameters and service parameters, which support the values of 'MAPPING' and 'PASSTHROUGH'.

Link copied to clipboard

The request path of the api.

Link copied to clipboard

The protocol of api which supports values of 'HTTP','HTTPS' or 'HTTP,HTTPS'.