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

com.aliyun.ccc20200701.models.CreateAudioFileResponseBody Maven / Gradle / Ivy

There is a newer version: 2.28.0
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy