com.aliyun.ens20171110.models.ExportBillDetailDataResponseBody 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 ExportBillDetailDataResponseBody extends TeaModel {
/**
* The download path of the exported file.
*
* example:
* http://test-oss.com/image_01.jpeg
*/
@NameInMap("FilePath")
public String filePath;
/**
* The ID of the request. This parameter is a common parameter. Each request has a unique ID. You can use the ID to troubleshoot issues.
*
* example:
* BEA05990-B90D-594F-8C8E-650AEEB94C5D
*/
@NameInMap("RequestId")
public String requestId;
public static ExportBillDetailDataResponseBody build(java.util.Map map) throws Exception {
ExportBillDetailDataResponseBody self = new ExportBillDetailDataResponseBody();
return TeaModel.build(map, self);
}
public ExportBillDetailDataResponseBody setFilePath(String filePath) {
this.filePath = filePath;
return this;
}
public String getFilePath() {
return this.filePath;
}
public ExportBillDetailDataResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy