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

com.aliyun.dingtalknotable_1_0.models.PrepareSetRichTextResponseBody 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.dingtalknotable_1_0.models;

import com.aliyun.tea.*;

public class PrepareSetRichTextResponseBody extends TeaModel {
    @NameInMap("markdown")
    public String markdown;

    @NameInMap("uploadInfos")
    public java.util.List uploadInfos;

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

    public PrepareSetRichTextResponseBody setMarkdown(String markdown) {
        this.markdown = markdown;
        return this;
    }
    public String getMarkdown() {
        return this.markdown;
    }

    public PrepareSetRichTextResponseBody setUploadInfos(java.util.List uploadInfos) {
        this.uploadInfos = uploadInfos;
        return this;
    }
    public java.util.List getUploadInfos() {
        return this.uploadInfos;
    }

    public static class PrepareSetRichTextResponseBodyUploadInfos extends TeaModel {
        @NameInMap("resourceId")
        public String resourceId;

        @NameInMap("resourceUrl")
        public String resourceUrl;

        @NameInMap("uploadUrl")
        public String uploadUrl;

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

        public PrepareSetRichTextResponseBodyUploadInfos setResourceId(String resourceId) {
            this.resourceId = resourceId;
            return this;
        }
        public String getResourceId() {
            return this.resourceId;
        }

        public PrepareSetRichTextResponseBodyUploadInfos setResourceUrl(String resourceUrl) {
            this.resourceUrl = resourceUrl;
            return this;
        }
        public String getResourceUrl() {
            return this.resourceUrl;
        }

        public PrepareSetRichTextResponseBodyUploadInfos setUploadUrl(String uploadUrl) {
            this.uploadUrl = uploadUrl;
            return this;
        }
        public String getUploadUrl() {
            return this.uploadUrl;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy