com.aliyun.dms_enterprise20181101.models.QueryDataTrackResultDownloadStatusRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dms_enterprise20181101 Show documentation
Show all versions of dms_enterprise20181101 Show documentation
Alibaba Cloud dms-enterprise (20181101) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dms_enterprise20181101.models;
import com.aliyun.tea.*;
public class QueryDataTrackResultDownloadStatusRequest extends TeaModel {
/**
* The ID of the download key, which is used to identify the parsing progress of data tracking logs. You can call the DownloadDataTrackResult operation to query the ID of the key.
* This parameter is required.
*
* example:
* e23dd7ec-a19f-4a69-8eb3-8ffd26e6****
*/
@NameInMap("DownloadKeyId")
public String downloadKeyId;
/**
* The ID of the ticket. You can call the ListOrders operation to query the ID of the ticket.
* This parameter is required.
*
* example:
* 11****
*/
@NameInMap("OrderId")
public Long orderId;
/**
* The ID of the tenant. You can call the GetUserActiveTenant or ListUserTenants operation to query the ID of the tenant.
*
* example:
* 1***
*/
@NameInMap("Tid")
public Long tid;
public static QueryDataTrackResultDownloadStatusRequest build(java.util.Map map) throws Exception {
QueryDataTrackResultDownloadStatusRequest self = new QueryDataTrackResultDownloadStatusRequest();
return TeaModel.build(map, self);
}
public QueryDataTrackResultDownloadStatusRequest setDownloadKeyId(String downloadKeyId) {
this.downloadKeyId = downloadKeyId;
return this;
}
public String getDownloadKeyId() {
return this.downloadKeyId;
}
public QueryDataTrackResultDownloadStatusRequest setOrderId(Long orderId) {
this.orderId = orderId;
return this;
}
public Long getOrderId() {
return this.orderId;
}
public QueryDataTrackResultDownloadStatusRequest setTid(Long tid) {
this.tid = tid;
return this;
}
public Long getTid() {
return this.tid;
}
}