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

com.aliyun.dyvmsapi20170525.models.RecoverCallInConfigResponseBody Maven / Gradle / Ivy

Go to download

Aliyun DYSMSAPI SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

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

import com.aliyun.tea.*;

public class RecoverCallInConfigResponseBody extends TeaModel {
    /**
     * 

The response code.

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

Indicates whether the inbound call was resumed. Valid values:

*
*

* true: The inbound call was resumed.

*

* false: The inbound call failed to be resumed.

*/ @NameInMap("Data") public Boolean data; /** *

The returned message.

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

The request ID.

*/ @NameInMap("RequestId") public String requestId; public static RecoverCallInConfigResponseBody build(java.util.Map map) throws Exception { RecoverCallInConfigResponseBody self = new RecoverCallInConfigResponseBody(); return TeaModel.build(map, self); } public RecoverCallInConfigResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public RecoverCallInConfigResponseBody setData(Boolean data) { this.data = data; return this; } public Boolean getData() { return this.data; } public RecoverCallInConfigResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public RecoverCallInConfigResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy