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

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

The unique receipt ID of the call.

*
*

You can call the [QueryCallDetailByCallId](~~393529~~) operation to query the details of the call based on the receipt ID.

*/ @NameInMap("CallId") public String callId; /** *

The response code.

*
*

* The value OK indicates that the request was successful.

*

* For more information about other response codes, see [API error codes](~~112502~~).

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

The returned message.

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

The request ID.

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy