com.aliyun.dingtalkservice_group_1_0.models.GetStoragePolicyRequest 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.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class GetStoragePolicyRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* TICKET_IMAGE
*/
@NameInMap("bizType")
public String bizType;
/**
* This parameter is required.
*
* example:
* wahah.txt
*/
@NameInMap("fileName")
public String fileName;
/**
* This parameter is required.
*
* example:
* 10000
*/
@NameInMap("fileSize")
public Long fileSize;
/**
* This parameter is required.
*/
@NameInMap("openTeamId")
public String openTeamId;
public static GetStoragePolicyRequest build(java.util.Map map) throws Exception {
GetStoragePolicyRequest self = new GetStoragePolicyRequest();
return TeaModel.build(map, self);
}
public GetStoragePolicyRequest setBizType(String bizType) {
this.bizType = bizType;
return this;
}
public String getBizType() {
return this.bizType;
}
public GetStoragePolicyRequest setFileName(String fileName) {
this.fileName = fileName;
return this;
}
public String getFileName() {
return this.fileName;
}
public GetStoragePolicyRequest setFileSize(Long fileSize) {
this.fileSize = fileSize;
return this;
}
public Long getFileSize() {
return this.fileSize;
}
public GetStoragePolicyRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
}