Headers
Deprecated (with error)
In KtorGen vararg header with format 'name: value' is not valid, refactor is needed
Replace with
io.github.kingg22.ktorgen.http.Header
Content copied to clipboard
This is only for easy migration from other libraries, using this doesn't generate code
From
@Headers("Content-Type: application/json", "Accept: application/json")
Content copied to clipboard
to
@Header(Header.ContentType, Header.ContentTypes.Application.Json)//type-safe
@Header("Accept", "application/json)
Content copied to clipboard