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

com.larksuite.oapi.service.bitable.v1.model.AppTableFieldProperty Maven / Gradle / Ivy

// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.bitable.v1.model;
import com.google.gson.annotations.SerializedName;

public class AppTableFieldProperty {
    @SerializedName("options")
    private AppTableFieldPropertyOption[] options;
    @SerializedName("formatter")
    private String formatter;
    @SerializedName("date_format")
    private String dateFormat;
    @SerializedName("time_format")
    private String timeFormat;
    @SerializedName("auto_fill")
    private Boolean autoFill;
    @SerializedName("multiple")
    private Boolean multiple;
    @SerializedName("table_id")
    private String tableId;
    @SerializedName("view_id")
    private String viewId;
    @SerializedName("fields")
    private String[] fields;

    public AppTableFieldPropertyOption[] getOptions() {
        return this.options;
    }

    public void setOptions(AppTableFieldPropertyOption[] options) {
        this.options = options;
    }

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

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

    public String getDateFormat() {
        return this.dateFormat;
    }

    public void setDateFormat(String dateFormat) {
        this.dateFormat = dateFormat;
    }

    public String getTimeFormat() {
        return this.timeFormat;
    }

    public void setTimeFormat(String timeFormat) {
        this.timeFormat = timeFormat;
    }

    public Boolean getAutoFill() {
        return this.autoFill;
    }

    public void setAutoFill(Boolean autoFill) {
        this.autoFill = autoFill;
    }

    public Boolean getMultiple() {
        return this.multiple;
    }

    public void setMultiple(Boolean multiple) {
        this.multiple = multiple;
    }

    public String getTableId() {
        return this.tableId;
    }

    public void setTableId(String tableId) {
        this.tableId = tableId;
    }

    public String getViewId() {
        return this.viewId;
    }

    public void setViewId(String viewId) {
        this.viewId = viewId;
    }

    public String[] getFields() {
        return this.fields;
    }

    public void setFields(String[] fields) {
        this.fields = fields;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy