The time series forecast response.

interface TSForecastResponse {
    created_at?: string;
    model_id?: string;
    results?: WatsonXAI.JsonObject[];
}

Properties

created_at?: string

The time when the response was created in ISO 8601 format.

model_id?: string

The model used to generate the forecast.

results?: WatsonXAI.JsonObject[]

The list of prediction results. There will be a forecast for each time series in the input data. The prediction_length field in the request specifies the number of predictions in the results. The actual number of rows in the results will be equal to the prediction length multiplied by the number of unique ids in id_columns. The timestamp_column field in the request indicates the name of the timestamp column in the results.