
com.larksuite.oapi.service.vc.v1.model.Report Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of larksuite-oapi Show documentation
Show all versions of larksuite-oapi Show documentation
Larksuite open platform facilitates the integration of enterprise applications and larksuite, making
collaboration and management more efficient
// 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 - 2025 Weber Informatics LLC | Privacy Policy