ExecutionRequestData
Container for desired inputs for the execution. The input file is specified as either text (in inputText) or binary (in inputBase64) or neither, and any parameters as an enclosed map.
| name | data type | description |
|---|---|---|
| parameters | map of string | The model parameters, or null to not set additional parameters. Neither key nor value should be null |
| inputText | string | The input data as text. If your input data is not a string, use inputBase64 instead. You should only set one of inputText and inputBase64, not both. |
| inputBase64 | string | The input data as Base64-encoded binary data. If your input data is a string, use inputText instead. You should only set one of inputText and inputBase64, not both. |
Example
{
"parameters" : {
"property1" : "...",
"property2" : "..."
},
"inputText" : "...",
"inputBase64" : "..."
}
