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

com.larksuite.oapi.service.sheets.v2.model.Style Maven / Gradle / Ivy

Go to download

Larksuite open platform facilitates the integration of enterprise applications and larksuite, making collaboration and management more efficient

There is a newer version: 1.0.18-rc8
Show newest version
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.sheets.v2.model;
import com.google.gson.annotations.SerializedName;

public class Style {
    @SerializedName("font")
    private Font font;
    @SerializedName("textDecoration")
    private Integer textDecoration;
    @SerializedName("formatter")
    private String formatter;
    @SerializedName("hAlign")
    private Integer hAlign;
    @SerializedName("vAlign")
    private Integer vAlign;
    @SerializedName("foreColor")
    private String foreColor;
    @SerializedName("backColor")
    private String backColor;
    @SerializedName("borderType")
    private String borderType;
    @SerializedName("borderColor")
    private String borderColor;
    @SerializedName("clean")
    private Boolean clean;

    public Font getFont() {
        return this.font;
    }

    public void setFont(Font font) {
        this.font = font;
    }

    public Integer getTextDecoration() {
        return this.textDecoration;
    }

    public void setTextDecoration(Integer textDecoration) {
        this.textDecoration = textDecoration;
    }

    public String getFormatter() {
        return this.formatter;
    }

    public void setFormatter(String formatter) {
        this.formatter = formatter;
    }

    public Integer getHAlign() {
        return this.hAlign;
    }

    public void setHAlign(Integer hAlign) {
        this.hAlign = hAlign;
    }

    public Integer getVAlign() {
        return this.vAlign;
    }

    public void setVAlign(Integer vAlign) {
        this.vAlign = vAlign;
    }

    public String getForeColor() {
        return this.foreColor;
    }

    public void setForeColor(String foreColor) {
        this.foreColor = foreColor;
    }

    public String getBackColor() {
        return this.backColor;
    }

    public void setBackColor(String backColor) {
        this.backColor = backColor;
    }

    public String getBorderType() {
        return this.borderType;
    }

    public void setBorderType(String borderType) {
        this.borderType = borderType;
    }

    public String getBorderColor() {
        return this.borderColor;
    }

    public void setBorderColor(String borderColor) {
        this.borderColor = borderColor;
    }

    public Boolean getClean() {
        return this.clean;
    }

    public void setClean(Boolean clean) {
        this.clean = clean;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy