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

com.aliyun.dingtalkats_1_0.models.UpdateApplicationRegFormRequest 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.dingtalkats_1_0.models;

import com.aliyun.tea.*;

public class UpdateApplicationRegFormRequest extends TeaModel {
    // 业务标识
    @NameInMap("bizCode")
    public String bizCode;

    // 应聘登记表的表单内容
    @NameInMap("content")
    public String content;

    // 钉盘文件信息
    @NameInMap("dingPanFile")
    public UpdateApplicationRegFormRequestDingPanFile dingPanFile;

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

    public UpdateApplicationRegFormRequest setBizCode(String bizCode) {
        this.bizCode = bizCode;
        return this;
    }
    public String getBizCode() {
        return this.bizCode;
    }

    public UpdateApplicationRegFormRequest setContent(String content) {
        this.content = content;
        return this;
    }
    public String getContent() {
        return this.content;
    }

    public UpdateApplicationRegFormRequest setDingPanFile(UpdateApplicationRegFormRequestDingPanFile dingPanFile) {
        this.dingPanFile = dingPanFile;
        return this;
    }
    public UpdateApplicationRegFormRequestDingPanFile getDingPanFile() {
        return this.dingPanFile;
    }

    public static class UpdateApplicationRegFormRequestDingPanFile extends TeaModel {
        // 钉盘文件标识
        @NameInMap("fileId")
        public String fileId;

        // 文件名
        @NameInMap("fileName")
        public String fileName;

        // 文件大小(单位:字节)
        @NameInMap("fileSize")
        public Long fileSize;

        // 文件类型(支持:pdf,doc,docx,ppt,pptx,jpg等)
        @NameInMap("fileType")
        public String fileType;

        // 钉盘空间标识
        @NameInMap("spaceId")
        public Long spaceId;

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

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

        public UpdateApplicationRegFormRequestDingPanFile setFileName(String fileName) {
            this.fileName = fileName;
            return this;
        }
        public String getFileName() {
            return this.fileName;
        }

        public UpdateApplicationRegFormRequestDingPanFile setFileSize(Long fileSize) {
            this.fileSize = fileSize;
            return this;
        }
        public Long getFileSize() {
            return this.fileSize;
        }

        public UpdateApplicationRegFormRequestDingPanFile setFileType(String fileType) {
            this.fileType = fileType;
            return this;
        }
        public String getFileType() {
            return this.fileType;
        }

        public UpdateApplicationRegFormRequestDingPanFile setSpaceId(Long spaceId) {
            this.spaceId = spaceId;
            return this;
        }
        public Long getSpaceId() {
            return this.spaceId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy