Builder

data class Builder(requestHelper: RequestHelper,url: String,httpMethod: HttpMethod,body: Map<String, Any??>?,query: Map<String, Any??>?,headers: Map<String, String>?,tag: String?)

Functions

body
Link copied to clipboard
fun body(body: Map<String, Any??>): Request.Builder
build
Link copied to clipboard
fun build(): Request
copy
Link copied to clipboard
fun copy(requestHelper: RequestHelper, url: String, httpMethod: HttpMethod, body: Map<String, Any??>?, query: Map<String, Any??>?, headers: Map<String, String>?, tag: String?): Request.Builder
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
headers
Link copied to clipboard
fun headers(headers: MutableMap<String, String>): Request.Builder
httpMethod
Link copied to clipboard
fun httpMethod(httpMethod: HttpMethod): Request.Builder
query
Link copied to clipboard
fun query(query: Map<String, Any??>): Request.Builder
tag
Link copied to clipboard
fun tag(tag: String): Request.Builder
toString
Link copied to clipboard
open override fun toString(): String