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

com.aliyun.dyvmsapi_intl20211015.models.BackendCallGroupResponseBody Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dyvmsapi_intl20211015.models;

import com.aliyun.tea.*;

public class BackendCallGroupResponseBody extends TeaModel {
    /**
     * 

The response code.

*
*

The value OK indicates that the request was successful. Other values indicate that the request failed. For more information, see Error codes.

*/ @NameInMap("Code") public String code; /** *

The returned message.

*/ @NameInMap("Message") public String message; /** *

The request ID.

*/ @NameInMap("RequestId") public String requestId; /** *

The task ID. You can use this ID to query the details of the task.

*/ @NameInMap("TaskId") public String taskId; public static BackendCallGroupResponseBody build(java.util.Map map) throws Exception { BackendCallGroupResponseBody self = new BackendCallGroupResponseBody(); return TeaModel.build(map, self); } public BackendCallGroupResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public BackendCallGroupResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public BackendCallGroupResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public BackendCallGroupResponseBody setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy