2022-09-10 16:56:51 +02:00
|
|
|
# Environment Builder Response Object
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"addonscript": {},
|
2023-02-03 16:20:43 +01:00
|
|
|
"files": [],
|
|
|
|
"launch": {}
|
2022-09-10 16:56:51 +02:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Required properties
|
|
|
|
|
|
|
|
### addonscript
|
|
|
|
|
|
|
|
This is an [AddonScript object](addonscript.md) containing information about the version of AddonScript used in this response.
|
2023-04-10 16:10:08 +02:00
|
|
|
It MUST be equal to the [addonscript Property](api_builder_request.md#addonscript) of the [request](api_builder_request.md).
|
2022-09-10 16:56:51 +02:00
|
|
|
|
|
|
|
### files
|
|
|
|
|
|
|
|
This is an array of [File objects](file.md). These files will be concidered to be files of the addon, for which the launch
|
2023-02-03 16:20:43 +01:00
|
|
|
environment was build, and MUST be treated equal to the [files in the manifest](manifest.md#files).
|
|
|
|
|
|
|
|
## Optional properties
|
|
|
|
|
|
|
|
### launch
|
|
|
|
|
|
|
|
This is a [Launch Config object](./launch.md) which can be used, to modify the launch configuration of the instance.
|