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

com.larksuite.oapi.service.vc.v1.model.Meeting 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 Meeting {
    @SerializedName("id")
    private Long id;
    @SerializedName("topic")
    private String topic;
    @SerializedName("url")
    private String url;
    @SerializedName("create_time")
    private Long createTime;
    @SerializedName("start_time")
    private Long startTime;
    @SerializedName("end_time")
    private Long endTime;
    @SerializedName("host_user")
    private MeetingUser hostUser;
    @SerializedName("status")
    private Integer status;
    @SerializedName("participant_count")
    private Long participantCount;
    @SerializedName("participants")
    private MeetingParticipant[] participants;
    @SerializedName("ability")
    private MeetingAbility ability;

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

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

    public String getTopic() {
        return this.topic;
    }

    public void setTopic(String topic) {
        this.topic = topic;
    }

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

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

    public Long getCreateTime() {
        return this.createTime;
    }

    public void setCreateTime(Long createTime) {
        this.createTime = createTime;
    }

    public Long getStartTime() {
        return this.startTime;
    }

    public void setStartTime(Long startTime) {
        this.startTime = startTime;
    }

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

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

    public MeetingUser getHostUser() {
        return this.hostUser;
    }

    public void setHostUser(MeetingUser hostUser) {
        this.hostUser = hostUser;
    }

    public Integer getStatus() {
        return this.status;
    }

    public void setStatus(Integer status) {
        this.status = status;
    }

    public Long getParticipantCount() {
        return this.participantCount;
    }

    public void setParticipantCount(Long participantCount) {
        this.participantCount = participantCount;
    }

    public MeetingParticipant[] getParticipants() {
        return this.participants;
    }

    public void setParticipants(MeetingParticipant[] participants) {
        this.participants = participants;
    }

    public MeetingAbility getAbility() {
        return this.ability;
    }

    public void setAbility(MeetingAbility ability) {
        this.ability = ability;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy