com.aliyun.ccc20200701.models.CreateAudioFileResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ccc20200701 Show documentation
Show all versions of ccc20200701 Show documentation
Alibaba Cloud cloud call center (20200701) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccc20200701.models;
import com.aliyun.tea.*;
public class CreateAudioFileResponseBody extends TeaModel {
/**
* example:
* OK
*/
@NameInMap("Code")
public String code;
/**
* example:
* 2301b83f-1f9f-491e-9f97-2f832ed92f0b
*/
@NameInMap("Data")
public String data;
/**
* example:
* 200
*/
@NameInMap("HttpStatusCode")
public Integer httpStatusCode;
@NameInMap("Message")
public String message;
/**
* example:
* 94E29B9B-DBC6-5951-B3DD-C85C1BDF20ED
*/
@NameInMap("RequestId")
public String requestId;
public static CreateAudioFileResponseBody build(java.util.Map map) throws Exception {
CreateAudioFileResponseBody self = new CreateAudioFileResponseBody();
return TeaModel.build(map, self);
}
public CreateAudioFileResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public CreateAudioFileResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public CreateAudioFileResponseBody setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public CreateAudioFileResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public CreateAudioFileResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}