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

com.larksuite.oapi.service.vc.v1.model.Reserve 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 Reserve {
    @SerializedName("id")
    private Long id;
    @SerializedName("meeting_no")
    private String meetingNo;
    @SerializedName("url")
    private String url;
    @SerializedName("app_link")
    private String appLink;
    @SerializedName("live_link")
    private String liveLink;
    @SerializedName("end_time")
    private Long endTime;
    @SerializedName("expire_status")
    private Integer expireStatus;
    @SerializedName("reserve_user_id")
    private String reserveUserId;
    @SerializedName("meeting_settings")
    private ReserveMeetingSetting meetingSettings;

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

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

    public String getMeetingNo() {
        return this.meetingNo;
    }

    public void setMeetingNo(String meetingNo) {
        this.meetingNo = meetingNo;
    }

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

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

    public String getAppLink() {
        return this.appLink;
    }

    public void setAppLink(String appLink) {
        this.appLink = appLink;
    }

    public String getLiveLink() {
        return this.liveLink;
    }

    public void setLiveLink(String liveLink) {
        this.liveLink = liveLink;
    }

    public Long getEndTime() {
        return this.endTime;
    }

    public void setEndTime(Long endTime) {
        this.endTime = endTime;
    }

    public Integer getExpireStatus() {
        return this.expireStatus;
    }

    public void setExpireStatus(Integer expireStatus) {
        this.expireStatus = expireStatus;
    }

    public String getReserveUserId() {
        return this.reserveUserId;
    }

    public void setReserveUserId(String reserveUserId) {
        this.reserveUserId = reserveUserId;
    }

    public ReserveMeetingSetting getMeetingSettings() {
        return this.meetingSettings;
    }

    public void setMeetingSettings(ReserveMeetingSetting meetingSettings) {
        this.meetingSettings = meetingSettings;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy