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

com.aliyun.dingtalkexclusive_1_0.models.PublishFileChangeNoticeRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class PublishFileChangeNoticeRequest extends TeaModel {
    // 钉盘文件id
    @NameInMap("fileId")
    public String fileId;

    // 操作类型: 1-添加 2-修改
    @NameInMap("operateType")
    public String operateType;

    // 操作人unionId
    @NameInMap("operatorUnionId")
    public String operatorUnionId;

    // 钉盘spaceId
    @NameInMap("spaceId")
    public String spaceId;

    public static PublishFileChangeNoticeRequest build(java.util.Map map) throws Exception {
        PublishFileChangeNoticeRequest self = new PublishFileChangeNoticeRequest();
        return TeaModel.build(map, self);
    }

    public PublishFileChangeNoticeRequest setFileId(String fileId) {
        this.fileId = fileId;
        return this;
    }
    public String getFileId() {
        return this.fileId;
    }

    public PublishFileChangeNoticeRequest setOperateType(String operateType) {
        this.operateType = operateType;
        return this;
    }
    public String getOperateType() {
        return this.operateType;
    }

    public PublishFileChangeNoticeRequest setOperatorUnionId(String operatorUnionId) {
        this.operatorUnionId = operatorUnionId;
        return this;
    }
    public String getOperatorUnionId() {
        return this.operatorUnionId;
    }

    public PublishFileChangeNoticeRequest setSpaceId(String spaceId) {
        this.spaceId = spaceId;
        return this;
    }
    public String getSpaceId() {
        return this.spaceId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy