com.aliyun.dingtalkimpaas_1_0.models.GetMediaUrlsRequest 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.dingtalkimpaas_1_0.models;
import com.aliyun.tea.*;
public class GetMediaUrlsRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("mediaIds")
public java.util.List mediaIds;
/**
* example:
* 86399
*/
@NameInMap("urlExpireTime")
public Integer urlExpireTime;
public static GetMediaUrlsRequest build(java.util.Map map) throws Exception {
GetMediaUrlsRequest self = new GetMediaUrlsRequest();
return TeaModel.build(map, self);
}
public GetMediaUrlsRequest setMediaIds(java.util.List mediaIds) {
this.mediaIds = mediaIds;
return this;
}
public java.util.List getMediaIds() {
return this.mediaIds;
}
public GetMediaUrlsRequest setUrlExpireTime(Integer urlExpireTime) {
this.urlExpireTime = urlExpireTime;
return this;
}
public Integer getUrlExpireTime() {
return this.urlExpireTime;
}
}