EmissionsForecastBatchParametersDTO

interface EmissionsForecastBatchParametersDTO {
    dataEndAt?: string;
    dataStartAt?: string;
    location?: string;
    requestedAt?: string;
    windowSize?: number;
}

Properties

dataEndAt?: string

End time boundary of forecasted data points. Ignores current forecast data points after this time. Defaults to the latest time in the forecast data.

EmissionsForecastBatchParametersDTO

dataStartAt?: string

Start time boundary of forecasted data points.Ignores current forecast data points before this time. Defaults to the earliest time in the forecast data.

EmissionsForecastBatchParametersDTO

location?: string

The location of the forecast

EmissionsForecastBatchParametersDTO

requestedAt?: string

For historical forecast requests, this value is the timestamp used to access the most recently generated forecast as of that time.

EmissionsForecastBatchParametersDTO

windowSize?: number

The estimated duration (in minutes) of the workload. Defaults to the duration of a single forecast data point.

EmissionsForecastBatchParametersDTO