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

com.larksuite.oapi.service.application.v6.model.Block 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.application.v6.model;
import com.google.gson.annotations.SerializedName;

public class Block {
    @SerializedName("block_type_id")
    private String blockTypeId;
    @SerializedName("version_id")
    private String versionId;
    @SerializedName("i18n")
    private BlockI18nInfo[] i18n;
    @SerializedName("mobile_icon_url")
    private String mobileIconUrl;
    @SerializedName("pc_icon_url")
    private String pcIconUrl;

    public String getBlockTypeId() {
        return this.blockTypeId;
    }

    public void setBlockTypeId(String blockTypeId) {
        this.blockTypeId = blockTypeId;
    }

    public String getVersionId() {
        return this.versionId;
    }

    public void setVersionId(String versionId) {
        this.versionId = versionId;
    }

    public BlockI18nInfo[] getI18n() {
        return this.i18n;
    }

    public void setI18n(BlockI18nInfo[] i18n) {
        this.i18n = i18n;
    }

    public String getMobileIconUrl() {
        return this.mobileIconUrl;
    }

    public void setMobileIconUrl(String mobileIconUrl) {
        this.mobileIconUrl = mobileIconUrl;
    }

    public String getPcIconUrl() {
        return this.pcIconUrl;
    }

    public void setPcIconUrl(String pcIconUrl) {
        this.pcIconUrl = pcIconUrl;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy