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

com.larksuite.oapi.service.vc.v1.model.Report 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 Report {
    @SerializedName("total_meeting_count")
    private Long totalMeetingCount;
    @SerializedName("total_meeting_duration")
    private Long totalMeetingDuration;
    @SerializedName("total_participant_count")
    private Long totalParticipantCount;
    @SerializedName("daily_report")
    private ReportMeetingDaily[] dailyReport;

    public Long getTotalMeetingCount() {
        return this.totalMeetingCount;
    }

    public void setTotalMeetingCount(Long totalMeetingCount) {
        this.totalMeetingCount = totalMeetingCount;
    }

    public Long getTotalMeetingDuration() {
        return this.totalMeetingDuration;
    }

    public void setTotalMeetingDuration(Long totalMeetingDuration) {
        this.totalMeetingDuration = totalMeetingDuration;
    }

    public Long getTotalParticipantCount() {
        return this.totalParticipantCount;
    }

    public void setTotalParticipantCount(Long totalParticipantCount) {
        this.totalParticipantCount = totalParticipantCount;
    }

    public ReportMeetingDaily[] getDailyReport() {
        return this.dailyReport;
    }

    public void setDailyReport(ReportMeetingDaily[] dailyReport) {
        this.dailyReport = dailyReport;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy