toggle menu
ozone
common
switch theme
search in API
ozone
/
app.bsky.video
Package-level
declarations
Types
Types
Get
Job
Status
Query
Params
Link copied to clipboard
@
Serializable
data
class
GetJobStatusQueryParams
(
val
jobId
:
String
)
Get
Job
Status
Response
Link copied to clipboard
@
Serializable
data
class
GetJobStatusResponse
(
val
jobStatus
:
JobStatus
)
Get
Upload
Limits
Response
Link copied to clipboard
@
Serializable
data
class
GetUploadLimitsResponse
(
val
canUpload
:
Boolean
,
val
remainingDailyVideos
:
Long
?
=
null
,
val
remainingDailyBytes
:
Long
?
=
null
,
val
message
:
String
?
=
null
,
val
error
:
String
?
=
null
)
Job
Status
Link copied to clipboard
@
Serializable
data
class
JobStatus
(
val
jobId
:
String
,
val
did
:
Did
,
val
state
:
State
,
val
progress
:
Long
?
=
null
,
val
blob
:
Blob
?
=
null
,
val
error
:
String
?
=
null
,
val
message
:
String
?
=
null
)
State
Link copied to clipboard
@
Serializable
(
with
=
StateSerializer::class
)
sealed
class
State
:
AtpEnum
State
Serializer
Link copied to clipboard
class
StateSerializer
:
KSerializer
<
State
>
Upload
Video
Response
Link copied to clipboard
@
Serializable
data
class
UploadVideoResponse
(
val
jobStatus
:
JobStatus
)