All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ens20171110.models.DescribeMeasurementDataRequest Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class DescribeMeasurementDataRequest extends TeaModel {
    /**
     * 

The end of the time range to query. Specify the time in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.

*

This parameter is required.

* * example: *

2019-08-30T00:00:00Z

*/ @NameInMap("EndDate") public String endDate; /** *

The beginning of the time range to query. Specify the time in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.

*

This parameter is required.

* * example: *

2019-06-01T00:00:00Z

*/ @NameInMap("StartDate") public String startDate; public static DescribeMeasurementDataRequest build(java.util.Map map) throws Exception { DescribeMeasurementDataRequest self = new DescribeMeasurementDataRequest(); return TeaModel.build(map, self); } public DescribeMeasurementDataRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeMeasurementDataRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy