com.aliyun.dms_enterprise20181101.models.GetOrderBaseInfoRequest 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 GetOrderBaseInfoRequest extends TeaModel {
/**
* The ID of the ticket.
* This parameter is required.
*
* example:
* 12345
*/
@NameInMap("OrderId")
public Long orderId;
/**
* The ID of the tenant.
*
* To view the tenant ID, move the pointer over the profile picture in the upper-right corner of the Data Management (DMS) console. For more information, see Manage DMS tenants.
*
*
* example:
* -1
*/
@NameInMap("Tid")
public Long tid;
public static GetOrderBaseInfoRequest build(java.util.Map map) throws Exception {
GetOrderBaseInfoRequest self = new GetOrderBaseInfoRequest();
return TeaModel.build(map, self);
}
public GetOrderBaseInfoRequest setOrderId(Long orderId) {
this.orderId = orderId;
return this;
}
public Long getOrderId() {
return this.orderId;
}
public GetOrderBaseInfoRequest setTid(Long tid) {
this.tid = tid;
return this;
}
public Long getTid() {
return this.tid;
}
}