pkg/sdk/client/model_carbon_intensity_batch_parameters_dto.go (9 lines of code) (raw):
/*
* CarbonAware.WebApi, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
* API version: 1.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package client
import (
"time"
)
type CarbonIntensityBatchParametersDto struct {
// The location name where workflow is run
Location string `json:"location,omitempty"`
// The time at which the workflow we are measuring carbon intensity for started
StartTime time.Time `json:"startTime,omitempty"`
// The time at which the workflow we are measuring carbon intensity for ended
EndTime time.Time `json:"endTime,omitempty"`
}