com.aliyun.ens20171110.models.DescribeMeasurementDataRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// 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