com.aliyun.dyplsapi20170525.models.QueryRecordFileDownloadUrlResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dyplsapi20170525.models;
import com.aliyun.tea.*;
public class QueryRecordFileDownloadUrlResponseBody extends TeaModel {
/**
* The response code.
*
* - The value OK indicates that the request was successful.
* - Other status codes indicate that the request failed. For more information, see Error codes.
*
*
* example:
* OK
*/
@NameInMap("Code")
public String code;
/**
* The download URL of the recording file. The download URL is valid for 2 hours.
*
* example:
*
*/
@NameInMap("DownloadUrl")
public String downloadUrl;
/**
* The returned message.
*
* example:
* OK
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* 1AB3CEF7-DCBE-488C-9C33-D180982CE031
*/
@NameInMap("RequestId")
public String requestId;
public static QueryRecordFileDownloadUrlResponseBody build(java.util.Map map) throws Exception {
QueryRecordFileDownloadUrlResponseBody self = new QueryRecordFileDownloadUrlResponseBody();
return TeaModel.build(map, self);
}
public QueryRecordFileDownloadUrlResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public QueryRecordFileDownloadUrlResponseBody setDownloadUrl(String downloadUrl) {
this.downloadUrl = downloadUrl;
return this;
}
public String getDownloadUrl() {
return this.downloadUrl;
}
public QueryRecordFileDownloadUrlResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public QueryRecordFileDownloadUrlResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy