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

com.aliyun.dms_enterprise20181101.models.GetDataTrackJobDegreeRequest 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 GetDataTrackJobDegreeRequest extends TeaModel {
    /**
     * 

The ID of the ticket. You can call the ListOrders operation to query the ticket ID.

*

This parameter is required.

* * example: *

321****

*/ @NameInMap("OrderId") public Long orderId; /** *

The ID of the tenant. You can call the GetUserActiveTenant or ListUserTenants operation to query the tenant ID.

* * example: *

3***

*/ @NameInMap("Tid") public Long tid; public static GetDataTrackJobDegreeRequest build(java.util.Map map) throws Exception { GetDataTrackJobDegreeRequest self = new GetDataTrackJobDegreeRequest(); return TeaModel.build(map, self); } public GetDataTrackJobDegreeRequest setOrderId(Long orderId) { this.orderId = orderId; return this; } public Long getOrderId() { return this.orderId; } public GetDataTrackJobDegreeRequest setTid(Long tid) { this.tid = tid; return this; } public Long getTid() { return this.tid; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy