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

com.larksuite.oapi.service.sheets.v2.model.ConditionFormatStyle 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 ConditionFormatStyle {
    @SerializedName("font")
    private ConditionFormatFont font;
    @SerializedName("text_decoration")
    private Integer textDecoration;
    @SerializedName("fore_color")
    private String foreColor;
    @SerializedName("back_color")
    private String backColor;

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

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

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

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

    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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy