com.aliyun.sdk.service.ens20171110.models.ExportMeasurementDataResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ens20171110 Show documentation
Show all versions of alibabacloud-ens20171110 Show documentation
Alibaba Cloud Ens (20171110) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ens20171110.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link ExportMeasurementDataResponseBody} extends {@link TeaModel}
*
* ExportMeasurementDataResponseBody
*/
public class ExportMeasurementDataResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("FilePath")
private String filePath;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private ExportMeasurementDataResponseBody(Builder builder) {
this.filePath = builder.filePath;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ExportMeasurementDataResponseBody create() {
return builder().build();
}
/**
* @return filePath
*/
public String getFilePath() {
return this.filePath;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String filePath;
private String requestId;
/**
* The download path of the exported file.
*
* example:
* http://test-oss.com/image_01.jpeg
*/
public Builder filePath(String filePath) {
this.filePath = filePath;
return this;
}
/**
* The ID of the request.
*
* example:
* C0003E8B-B930-4F59-ADC0-0E209A9012A8
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ExportMeasurementDataResponseBody build() {
return new ExportMeasurementDataResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy