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

com.larksuite.oapi.service.sheets.v2.model.Reply 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 Reply {
    @SerializedName("updateSheet")
    private Properties updateSheet;
    @SerializedName("addSheet")
    private Properties addSheet;
    @SerializedName("copySheet")
    private Properties copySheet;
    @SerializedName("deleteSheet")
    private DeleteSheetReply deleteSheet;

    public Properties getUpdateSheet() {
        return this.updateSheet;
    }

    public void setUpdateSheet(Properties updateSheet) {
        this.updateSheet = updateSheet;
    }

    public Properties getAddSheet() {
        return this.addSheet;
    }

    public void setAddSheet(Properties addSheet) {
        this.addSheet = addSheet;
    }

    public Properties getCopySheet() {
        return this.copySheet;
    }

    public void setCopySheet(Properties copySheet) {
        this.copySheet = copySheet;
    }

    public DeleteSheetReply getDeleteSheet() {
        return this.deleteSheet;
    }

    public void setDeleteSheet(DeleteSheetReply deleteSheet) {
        this.deleteSheet = deleteSheet;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy