Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.39 KB

BlockOperation.md

File metadata and controls

39 lines (30 loc) · 1.39 KB

BlockOperation

Properties

Name Type Description Notes
error String The error message, if any
estimatedSecondsRemaining Float The estimated amount of time remaining until this block operation is complete (in seconds)
link String The API link that can be used to obtain more information about this object
max Vector3i The maximum block belonging to this operation
min Vector3i The minimum block belonging to this operation
progress Float The current progress of the block operation, from 0 (=started) to 1 (=finished)
status StatusEnum The current status of the block operation
type TypeEnum The type of block operation
uuid UUID The unique UUID identifying this block operation
world World The world in which this block operation is running

Enum: StatusEnum

Name Value
INIT "INIT"
RUNNING "RUNNING"
PAUSED "PAUSED"
DONE "DONE"
ERRORED "ERRORED"
CANCELED "CANCELED"

Enum: TypeEnum

Name Value
GET "GET"
CHANGE "CHANGE"