All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dms_enterprise20181101.models.GetOrderBaseInfoRequest Maven / Gradle / Ivy

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy