mirror of
https://github.com/gosticks/octoprint-open-api.git
synced 2025-10-16 11:45:38 +00:00
24 lines
1.1 KiB
YAML
24 lines
1.1 KiB
YAML
type: object
|
||
properties:
|
||
files:
|
||
type: object
|
||
description: >-
|
||
Abridged information regarding the file that was just uploaded. If only uploaded to local this will only contain the local property. If uploaded to SD card, this will contain both local and sdcard properties. Only contained if a file was uploaded, not present if only a new folder was created.
|
||
properties:
|
||
local:
|
||
description: >-
|
||
The information regarding the file that was just uploaded to the local storage.
|
||
$ref: ./File.yaml
|
||
sdcard:
|
||
description: >-
|
||
The information regarding the file that was just uploaded to the printer’s SD card.
|
||
$ref: ./File.yaml
|
||
folder:
|
||
description: >-
|
||
Abridged information regarding the folder that was just created. Only contained if a folder was created, not present if a file was uploaded.
|
||
$ref: ./File.yaml
|
||
done:
|
||
type: boolean
|
||
description: >-
|
||
Whether any file processing after upload has already finished (true) or not, e.g. due to first needing to perform a slicing step (false). Clients may use this information to direct progress displays related to the upload.
|