![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkconference_1_0.models.QueryMinutesAudioResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkconference_1_0.models;
import com.aliyun.tea.*;
public class QueryMinutesAudioResponseBody extends TeaModel {
@NameInMap("audioList")
public java.util.List audioList;
public static QueryMinutesAudioResponseBody build(java.util.Map map) throws Exception {
QueryMinutesAudioResponseBody self = new QueryMinutesAudioResponseBody();
return TeaModel.build(map, self);
}
public QueryMinutesAudioResponseBody setAudioList(java.util.List audioList) {
this.audioList = audioList;
return this;
}
public java.util.List getAudioList() {
return this.audioList;
}
public static class QueryMinutesAudioResponseBodyAudioList extends TeaModel {
/**
* example:
* 59886
*/
@NameInMap("duration")
public Long duration;
/**
* example:
* 1631172094000
*/
@NameInMap("endTime")
public Long endTime;
/**
* example:
* 1127942
*/
@NameInMap("fileSize")
public Long fileSize;
/**
* example:
*
*/
@NameInMap("playUrl")
public String playUrl;
/**
* example:
* 290882268xxx1172033231
*/
@NameInMap("recordId")
public String recordId;
/**
* example:
* 1631172094000
*/
@NameInMap("startTime")
public Long startTime;
/**
* example:
* WFBkgJvtxxxxtSaA1jK4sgiEiE
*/
@NameInMap("unionId")
public String unionId;
public static QueryMinutesAudioResponseBodyAudioList build(java.util.Map map) throws Exception {
QueryMinutesAudioResponseBodyAudioList self = new QueryMinutesAudioResponseBodyAudioList();
return TeaModel.build(map, self);
}
public QueryMinutesAudioResponseBodyAudioList setDuration(Long duration) {
this.duration = duration;
return this;
}
public Long getDuration() {
return this.duration;
}
public QueryMinutesAudioResponseBodyAudioList setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryMinutesAudioResponseBodyAudioList setFileSize(Long fileSize) {
this.fileSize = fileSize;
return this;
}
public Long getFileSize() {
return this.fileSize;
}
public QueryMinutesAudioResponseBodyAudioList setPlayUrl(String playUrl) {
this.playUrl = playUrl;
return this;
}
public String getPlayUrl() {
return this.playUrl;
}
public QueryMinutesAudioResponseBodyAudioList setRecordId(String recordId) {
this.recordId = recordId;
return this;
}
public String getRecordId() {
return this.recordId;
}
public QueryMinutesAudioResponseBodyAudioList setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public QueryMinutesAudioResponseBodyAudioList setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy