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

com.aliyun.dingtalkworkflow_1_0.models.PremiumAddApproveDentryAuthRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkflow_1_0.models;

import com.aliyun.tea.*;

public class PremiumAddApproveDentryAuthRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("fileInfos") public java.util.List fileInfos; /** *

This parameter is required.

* * example: *

user123

*/ @NameInMap("userId") public String userId; public static PremiumAddApproveDentryAuthRequest build(java.util.Map map) throws Exception { PremiumAddApproveDentryAuthRequest self = new PremiumAddApproveDentryAuthRequest(); return TeaModel.build(map, self); } public PremiumAddApproveDentryAuthRequest setFileInfos(java.util.List fileInfos) { this.fileInfos = fileInfos; return this; } public java.util.List getFileInfos() { return this.fileInfos; } public PremiumAddApproveDentryAuthRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public static class PremiumAddApproveDentryAuthRequestFileInfos extends TeaModel { /** *

This parameter is required.

* * example: *

B1oQixxxx

*/ @NameInMap("fileId") public String fileId; /** *

This parameter is required.

* * example: *

111

*/ @NameInMap("spaceId") public Long spaceId; public static PremiumAddApproveDentryAuthRequestFileInfos build(java.util.Map map) throws Exception { PremiumAddApproveDentryAuthRequestFileInfos self = new PremiumAddApproveDentryAuthRequestFileInfos(); return TeaModel.build(map, self); } public PremiumAddApproveDentryAuthRequestFileInfos setFileId(String fileId) { this.fileId = fileId; return this; } public String getFileId() { return this.fileId; } public PremiumAddApproveDentryAuthRequestFileInfos setSpaceId(Long spaceId) { this.spaceId = spaceId; return this; } public Long getSpaceId() { return this.spaceId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy