com.aliyun.sdk.service.dyvmsapi_intl20211015.models.BackendCallSignalResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-dyvmsapi_intl20211015 Show documentation
Show all versions of alibabacloud-dyvmsapi_intl20211015 Show documentation
Alibaba Cloud Dyvmsapi-intl (20211015) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.dyvmsapi_intl20211015.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link BackendCallSignalResponseBody} extends {@link TeaModel}
*
* BackendCallSignalResponseBody
*/
public class BackendCallSignalResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("CallId")
private String callId;
@com.aliyun.core.annotation.NameInMap("Code")
private String code;
@com.aliyun.core.annotation.NameInMap("Message")
private String message;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private BackendCallSignalResponseBody(Builder builder) {
this.callId = builder.callId;
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static BackendCallSignalResponseBody create() {
return builder().build();
}
/**
* @return callId
*/
public String getCallId() {
return this.callId;
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String callId;
private String code;
private String message;
private String requestId;
/**
* The unique receipt ID for the call. You can use this ID to query the details of a single call.
*
* example:
* 550e8400-e29b-41d4-a716-446655440000
*/
public Builder callId(String callId) {
this.callId = callId;
return this;
}
/**
* 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.
*
* example:
* OK
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* The returned message.
*
* example:
* OK
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* The request ID.
*
* example:
* D9CB3933-9FE3-4870-BA8E-2BEE91B69D23
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public BackendCallSignalResponseBody build() {
return new BackendCallSignalResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy