com.aliyun.ens20171110.models.ExportMeasurementDataRequest 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 ExportMeasurementDataRequest 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:
* 2021-10-30T16: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 ExportMeasurementDataRequest build(java.util.Map map) throws Exception {
ExportMeasurementDataRequest self = new ExportMeasurementDataRequest();
return TeaModel.build(map, self);
}
public ExportMeasurementDataRequest setEndDate(String endDate) {
this.endDate = endDate;
return this;
}
public String getEndDate() {
return this.endDate;
}
public ExportMeasurementDataRequest setStartDate(String startDate) {
this.startDate = startDate;
return this;
}
public String getStartDate() {
return this.startDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy