Merge pull request #751 from hanazuki/doc-ReorderSceneItems

docs: Fix type of ReorderSceneItems request parameter
This commit is contained in:
tt2468
2021-05-31 17:13:33 -07:00
committed by GitHub

View File

@ -109,7 +109,7 @@ RpcResponse WSRequestHandler::CreateScene(const RpcRequest& request) {
* Changes the order of scene items in the requested scene. * Changes the order of scene items in the requested scene.
* *
* @param {String (optional)} `scene` Name of the scene to reorder (defaults to current). * @param {String (optional)} `scene` Name of the scene to reorder (defaults to current).
* @param {Array<Scene>} `items` Ordered list of objects with name and/or id specified. Id preferred due to uniqueness per scene * @param {Array<Object>} `items` Ordered list of objects with name and/or id specified. Id preferred due to uniqueness per scene
* @param {int (optional)} `items.*.id` Id of a specific scene item. Unique on a scene by scene basis. * @param {int (optional)} `items.*.id` Id of a specific scene item. Unique on a scene by scene basis.
* @param {String (optional)} `items.*.name` Name of a scene item. Sufficiently unique if no scene items share sources within the scene. * @param {String (optional)} `items.*.name` Name of a scene item. Sufficiently unique if no scene items share sources within the scene.
* *