Airbyte Kotlin Bulk CDK
Toggle table of contents
0.1.92
jvm
Platform filter
jvm
Switch theme
Search in API
Airbyte Kotlin Bulk CDK
bulk-cdk-toolkit-load-http
/
io.airbyte.cdk.load.http
Package-level
declarations
Types
Functions
Types
Http
Client
Link copied to clipboard
interface
HttpClient
Request
Link copied to clipboard
data
class
Request
(
val
method
:
RequestMethod
,
val
url
:
String
,
val
headers
:
Map
<
String
,
String
>
=
mapOf()
,
val
query
:
Map
<
String
,
List
<
String
>
>
=
mapOf()
,
val
body
:
ByteArray
?
=
null
)
Request
Method
Link copied to clipboard
enum
RequestMethod
:
Enum
<
RequestMethod
>
Response
Link copied to clipboard
interface
Response
:
Closeable
Functions
consume
Body
To
String
Link copied to clipboard
fun
Response
.
consumeBodyToString
(
)
:
String
get
Body
Or
Empty
Link copied to clipboard
fun
Response
.
getBodyOrEmpty
(
)
:
InputStream