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

com.larksuite.oapi.service.sheets.v2.model.Protect 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 Protect {
    @SerializedName("lock")
    private String lock;
    @SerializedName("lockInfo")
    private String lockInfo;
    @SerializedName("userIds")
    private Integer[] userIds;

    public String getLock() {
        return this.lock;
    }

    public void setLock(String lock) {
        this.lock = lock;
    }

    public String getLockInfo() {
        return this.lockInfo;
    }

    public void setLockInfo(String lockInfo) {
        this.lockInfo = lockInfo;
    }

    public Integer[] getUserIds() {
        return this.userIds;
    }

    public void setUserIds(Integer[] userIds) {
        this.userIds = userIds;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy