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
/
Request
Request
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
)
Members
Constructors
Request
Link copied to clipboard
constructor
(
method
:
RequestMethod
,
url
:
String
,
headers
:
Map
<
String
,
String
>
=
mapOf()
,
query
:
Map
<
String
,
List
<
String
>
>
=
mapOf()
,
body
:
ByteArray
?
=
null
)
Properties
body
Link copied to clipboard
val
body
:
ByteArray
?
=
null
headers
Link copied to clipboard
val
headers
:
Map
<
String
,
String
>
method
Link copied to clipboard
val
method
:
RequestMethod
query
Link copied to clipboard
val
query
:
Map
<
String
,
List
<
String
>
>
url
Link copied to clipboard
val
url
:
String