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

com.larksuite.oapi.service.vc.v1.model.RoomDigitalSignageMaterial 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 RoomDigitalSignageMaterial {
    @SerializedName("id")
    private String id;
    @SerializedName("name")
    private String name;
    @SerializedName("material_type")
    private Integer materialType;
    @SerializedName("url")
    private String url;
    @SerializedName("duration")
    private Integer duration;
    @SerializedName("cover")
    private String cover;
    @SerializedName("md5")
    private String md5;

    public String getId() {
        return this.id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getMaterialType() {
        return this.materialType;
    }

    public void setMaterialType(Integer materialType) {
        this.materialType = materialType;
    }

    public String getUrl() {
        return this.url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public Integer getDuration() {
        return this.duration;
    }

    public void setDuration(Integer duration) {
        this.duration = duration;
    }

    public String getCover() {
        return this.cover;
    }

    public void setCover(String cover) {
        this.cover = cover;
    }

    public String getMd5() {
        return this.md5;
    }

    public void setMd5(String md5) {
        this.md5 = md5;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy