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

com.aliyun.dingtalkdoc_1_0.models.UpdateRangeRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_1_0.models;

import com.aliyun.tea.*;

public class UpdateRangeRequest extends TeaModel {
    // 背景色
    @NameInMap("backgroundColors")
    public java.util.List> backgroundColors;

    @NameInMap("hyperlinks")
    public java.util.List> hyperlinks;

    // 值
    @NameInMap("values")
    public java.util.List> values;

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

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

    public UpdateRangeRequest setBackgroundColors(java.util.List> backgroundColors) {
        this.backgroundColors = backgroundColors;
        return this;
    }
    public java.util.List> getBackgroundColors() {
        return this.backgroundColors;
    }

    public UpdateRangeRequest setHyperlinks(java.util.List> hyperlinks) {
        this.hyperlinks = hyperlinks;
        return this;
    }
    public java.util.List> getHyperlinks() {
        return this.hyperlinks;
    }

    public UpdateRangeRequest setValues(java.util.List> values) {
        this.values = values;
        return this;
    }
    public java.util.List> getValues() {
        return this.values;
    }

    public UpdateRangeRequest setOperatorId(String operatorId) {
        this.operatorId = operatorId;
        return this;
    }
    public String getOperatorId() {
        return this.operatorId;
    }

    public static class UpdateRangeRequestHyperlinks extends TeaModel {
        // 超链接类型,可选 "path", "sheet", "range"
        @NameInMap("type")
        public String type;

        // 链接地址
        @NameInMap("link")
        public String link;

        // 链接文本
        @NameInMap("text")
        public String text;

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

        public UpdateRangeRequestHyperlinks setType(String type) {
            this.type = type;
            return this;
        }
        public String getType() {
            return this.type;
        }

        public UpdateRangeRequestHyperlinks setLink(String link) {
            this.link = link;
            return this;
        }
        public String getLink() {
            return this.link;
        }

        public UpdateRangeRequestHyperlinks setText(String text) {
            this.text = text;
            return this;
        }
        public String getText() {
            return this.text;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy