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

com.aliyun.dingtalkservice_group_1_0.models.GetStoragePolicyRequest Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy