com.larksuite.oapi.service.sheets.v2.model.ProtectedRange Maven / Gradle / Ivy
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.sheets.v2.model;
import com.google.gson.annotations.SerializedName;
public class ProtectedRange {
@SerializedName("protectId")
private String protectId;
@SerializedName("dimension")
private Dimension dimension;
@SerializedName("sheetId")
private String sheetId;
@SerializedName("lockInfo")
private String lockInfo;
@SerializedName("editors")
private Editors editors;
public String getProtectId() {
return this.protectId;
}
public void setProtectId(String protectId) {
this.protectId = protectId;
}
public Dimension getDimension() {
return this.dimension;
}
public void setDimension(Dimension dimension) {
this.dimension = dimension;
}
public String getSheetId() {
return this.sheetId;
}
public void setSheetId(String sheetId) {
this.sheetId = sheetId;
}
public String getLockInfo() {
return this.lockInfo;
}
public void setLockInfo(String lockInfo) {
this.lockInfo = lockInfo;
}
public Editors getEditors() {
return this.editors;
}
public void setEditors(Editors editors) {
this.editors = editors;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy