com.aliyun.dingtalkdoc_1_0.models.GetRangeResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_1_0.models;
import com.aliyun.tea.*;
public class GetRangeResponseBody extends TeaModel {
@NameInMap("backgroundColors")
public java.util.List> backgroundColors;
@NameInMap("displayValues")
public java.util.List> displayValues;
@NameInMap("fontSizes")
public java.util.List> fontSizes;
@NameInMap("fontWeights")
public java.util.List> fontWeights;
@NameInMap("formulas")
public java.util.List> formulas;
@NameInMap("horizontalAlignments")
public java.util.List> horizontalAlignments;
@NameInMap("values")
public java.util.List> values;
@NameInMap("verticalAlignments")
public java.util.List> verticalAlignments;
public static GetRangeResponseBody build(java.util.Map map) throws Exception {
GetRangeResponseBody self = new GetRangeResponseBody();
return TeaModel.build(map, self);
}
public GetRangeResponseBody setBackgroundColors(java.util.List> backgroundColors) {
this.backgroundColors = backgroundColors;
return this;
}
public java.util.List> getBackgroundColors() {
return this.backgroundColors;
}
public GetRangeResponseBody setDisplayValues(java.util.List> displayValues) {
this.displayValues = displayValues;
return this;
}
public java.util.List> getDisplayValues() {
return this.displayValues;
}
public GetRangeResponseBody setFontSizes(java.util.List> fontSizes) {
this.fontSizes = fontSizes;
return this;
}
public java.util.List> getFontSizes() {
return this.fontSizes;
}
public GetRangeResponseBody setFontWeights(java.util.List> fontWeights) {
this.fontWeights = fontWeights;
return this;
}
public java.util.List> getFontWeights() {
return this.fontWeights;
}
public GetRangeResponseBody setFormulas(java.util.List> formulas) {
this.formulas = formulas;
return this;
}
public java.util.List> getFormulas() {
return this.formulas;
}
public GetRangeResponseBody setHorizontalAlignments(java.util.List> horizontalAlignments) {
this.horizontalAlignments = horizontalAlignments;
return this;
}
public java.util.List> getHorizontalAlignments() {
return this.horizontalAlignments;
}
public GetRangeResponseBody setValues(java.util.List> values) {
this.values = values;
return this;
}
public java.util.List> getValues() {
return this.values;
}
public GetRangeResponseBody setVerticalAlignments(java.util.List> verticalAlignments) {
this.verticalAlignments = verticalAlignments;
return this;
}
public java.util.List> getVerticalAlignments() {
return this.verticalAlignments;
}
public static class GetRangeResponseBodyBackgroundColors extends TeaModel {
/**
* example:
* red_value
*/
@NameInMap("red")
public Integer red;
/**
* example:
* green_value
*/
@NameInMap("green")
public Integer green;
/**
* example:
* blue_value
*/
@NameInMap("blue")
public Integer blue;
/**
* example:
* hex_string_value
*/
@NameInMap("hexString")
public String hexString;
public static GetRangeResponseBodyBackgroundColors build(java.util.Map map) throws Exception {
GetRangeResponseBodyBackgroundColors self = new GetRangeResponseBodyBackgroundColors();
return TeaModel.build(map, self);
}
public GetRangeResponseBodyBackgroundColors setRed(Integer red) {
this.red = red;
return this;
}
public Integer getRed() {
return this.red;
}
public GetRangeResponseBodyBackgroundColors setGreen(Integer green) {
this.green = green;
return this;
}
public Integer getGreen() {
return this.green;
}
public GetRangeResponseBodyBackgroundColors setBlue(Integer blue) {
this.blue = blue;
return this;
}
public Integer getBlue() {
return this.blue;
}
public GetRangeResponseBodyBackgroundColors setHexString(String hexString) {
this.hexString = hexString;
return this;
}
public String getHexString() {
return this.hexString;
}
}
}