Axer
Toggle table of contents
1.1.10
common
Platform filter
common
Switch theme
Search in API
Axer
Axer
/
io.github.orioneee.domain.requests
Package-level
declarations
Types
Types
Request
Link copied to clipboard
common
data
class
Request
(
val
method
:
String
,
val
sendTime
:
Long
,
val
host
:
String
,
val
path
:
String
,
val
body
:
ByteArray
?
,
val
headers
:
Map
<
String
,
String
>
)
Request
Short
Link copied to clipboard
common
@
Serializable
data
class
RequestShort
(
val
method
:
String
,
val
sendTime
:
Long
,
val
path
:
String
)
Response
Link copied to clipboard
common
data
class
Response
(
val
body
:
ByteArray
?
,
val
time
:
Long
,
val
headers
:
Map
<
String
,
String
>
,
val
status
:
Int
,
val
bodyType
:
BodyType
)
Response
Short
Link copied to clipboard
common
@
Serializable
sealed
class
ResponseShort