
com.larksuite.oapi.service.sheets.v2.model.SpreadsheetsValuesAppendResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of larksuite-oapi Show documentation
Show all versions of larksuite-oapi Show documentation
Larksuite open platform facilitates the integration of enterprise applications and larksuite, making
collaboration and management more efficient
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.sheets.v2.model;
import com.google.gson.annotations.SerializedName;
public class SpreadsheetsValuesAppendResult {
@SerializedName("spreadsheetToken")
private String spreadsheetToken;
@SerializedName("tableRange")
private String tableRange;
@SerializedName("revision")
private Integer revision;
@SerializedName("updates")
private Updates updates;
public String getSpreadsheetToken() {
return this.spreadsheetToken;
}
public void setSpreadsheetToken(String spreadsheetToken) {
this.spreadsheetToken = spreadsheetToken;
}
public String getTableRange() {
return this.tableRange;
}
public void setTableRange(String tableRange) {
this.tableRange = tableRange;
}
public Integer getRevision() {
return this.revision;
}
public void setRevision(Integer revision) {
this.revision = revision;
}
public Updates getUpdates() {
return this.updates;
}
public void setUpdates(Updates updates) {
this.updates = updates;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy