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

com.aliyun.arms20190808.models.CreateDispatchRuleResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;

import com.aliyun.tea.*;

public class CreateDispatchRuleResponseBody extends TeaModel {
    /**
     * 

The ID of the dispatch policy.

* * example: *

10413

*/ @NameInMap("DispatchRuleId") public Long dispatchRuleId; /** *

The ID of the request.

* * example: *

A5EC8221-08F2-4C95-9AF1-49FD998C****

*/ @NameInMap("RequestId") public String requestId; public static CreateDispatchRuleResponseBody build(java.util.Map map) throws Exception { CreateDispatchRuleResponseBody self = new CreateDispatchRuleResponseBody(); return TeaModel.build(map, self); } public CreateDispatchRuleResponseBody setDispatchRuleId(Long dispatchRuleId) { this.dispatchRuleId = dispatchRuleId; return this; } public Long getDispatchRuleId() { return this.dispatchRuleId; } public CreateDispatchRuleResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy