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

com.larksuite.oapi.service.vc.v1.model.RoomDigitalSignage 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.vc.v1.model;
import com.google.gson.annotations.SerializedName;

public class RoomDigitalSignage {
    @SerializedName("enable")
    private Boolean enable;
    @SerializedName("mute")
    private Boolean mute;
    @SerializedName("start_display")
    private Integer startDisplay;
    @SerializedName("stop_display")
    private Integer stopDisplay;
    @SerializedName("materials")
    private RoomDigitalSignageMaterial[] materials;

    public Boolean getEnable() {
        return this.enable;
    }

    public void setEnable(Boolean enable) {
        this.enable = enable;
    }

    public Boolean getMute() {
        return this.mute;
    }

    public void setMute(Boolean mute) {
        this.mute = mute;
    }

    public Integer getStartDisplay() {
        return this.startDisplay;
    }

    public void setStartDisplay(Integer startDisplay) {
        this.startDisplay = startDisplay;
    }

    public Integer getStopDisplay() {
        return this.stopDisplay;
    }

    public void setStopDisplay(Integer stopDisplay) {
        this.stopDisplay = stopDisplay;
    }

    public RoomDigitalSignageMaterial[] getMaterials() {
        return this.materials;
    }

    public void setMaterials(RoomDigitalSignageMaterial[] materials) {
        this.materials = materials;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy