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

com.larksuite.oapi.service.sheets.v2.model.Editors 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 Editors {
    @SerializedName("users")
    private User[] users;
    @SerializedName("addEditors")
    private User[] addEditors;
    @SerializedName("delEditors")
    private User[] delEditors;

    public User[] getUsers() {
        return this.users;
    }

    public void setUsers(User[] users) {
        this.users = users;
    }

    public User[] getAddEditors() {
        return this.addEditors;
    }

    public void setAddEditors(User[] addEditors) {
        this.addEditors = addEditors;
    }

    public User[] getDelEditors() {
        return this.delEditors;
    }

    public void setDelEditors(User[] delEditors) {
        this.delEditors = delEditors;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy