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

com.larksuite.oapi.service.sheets.v2.model.UpdateResponse 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 UpdateResponse {
    @SerializedName("spreadsheetToken")
    private String spreadsheetToken;
    @SerializedName("updatedRange")
    private String updatedRange;
    @SerializedName("updatedRows")
    private Integer updatedRows;
    @SerializedName("updatedColumns")
    private Integer updatedColumns;
    @SerializedName("updatedCells")
    private Integer updatedCells;

    public String getSpreadsheetToken() {
        return this.spreadsheetToken;
    }

    public void setSpreadsheetToken(String spreadsheetToken) {
        this.spreadsheetToken = spreadsheetToken;
    }

    public String getUpdatedRange() {
        return this.updatedRange;
    }

    public void setUpdatedRange(String updatedRange) {
        this.updatedRange = updatedRange;
    }

    public Integer getUpdatedRows() {
        return this.updatedRows;
    }

    public void setUpdatedRows(Integer updatedRows) {
        this.updatedRows = updatedRows;
    }

    public Integer getUpdatedColumns() {
        return this.updatedColumns;
    }

    public void setUpdatedColumns(Integer updatedColumns) {
        this.updatedColumns = updatedColumns;
    }

    public Integer getUpdatedCells() {
        return this.updatedCells;
    }

    public void setUpdatedCells(Integer updatedCells) {
        this.updatedCells = updatedCells;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy