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

com.larksuite.oapi.service.bitable.v1.model.AppTableField 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.bitable.v1.model;
import com.google.gson.annotations.SerializedName;

public class AppTableField {
    @SerializedName("field_id")
    private String fieldId;
    @SerializedName("field_name")
    private String fieldName;
    @SerializedName("type")
    private Integer type;
    @SerializedName("property")
    private Object property;

    public String getFieldId() {
        return this.fieldId;
    }

    public void setFieldId(String fieldId) {
        this.fieldId = fieldId;
    }

    public String getFieldName() {
        return this.fieldName;
    }

    public void setFieldName(String fieldName) {
        this.fieldName = fieldName;
    }

    public Integer getType() {
        return this.type;
    }

    public void setType(Integer type) {
        this.type = type;
    }

    public Object getProperty() {
        return this.property;
    }

    public void setProperty(Object property) {
        this.property = property;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy