com.larksuite.oapi.service.calendar.v4.model.CalendarEventAttendeeCreateReqBody Maven / Gradle / Ivy
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.calendar.v4.model;
import com.google.gson.annotations.SerializedName;
public class CalendarEventAttendeeCreateReqBody {
@SerializedName("attendees")
private CalendarEventAttendee[] attendees;
@SerializedName("need_notification")
private Boolean needNotification;
public CalendarEventAttendee[] getAttendees() {
return this.attendees;
}
public void setAttendees(CalendarEventAttendee[] attendees) {
this.attendees = attendees;
}
public Boolean getNeedNotification() {
return this.needNotification;
}
public void setNeedNotification(Boolean needNotification) {
this.needNotification = needNotification;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy