
com.aliyun.dingtalkcalendar_1_0.models.AddAttendeeRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcalendar_1_0.models;
import com.aliyun.tea.*;
public class AddAttendeeRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("attendeesToAdd")
public java.util.List attendeesToAdd;
@NameInMap("chatNotification")
public Boolean chatNotification;
@NameInMap("pushNotification")
public Boolean pushNotification;
public static AddAttendeeRequest build(java.util.Map map) throws Exception {
AddAttendeeRequest self = new AddAttendeeRequest();
return TeaModel.build(map, self);
}
public AddAttendeeRequest setAttendeesToAdd(java.util.List attendeesToAdd) {
this.attendeesToAdd = attendeesToAdd;
return this;
}
public java.util.List getAttendeesToAdd() {
return this.attendeesToAdd;
}
public AddAttendeeRequest setChatNotification(Boolean chatNotification) {
this.chatNotification = chatNotification;
return this;
}
public Boolean getChatNotification() {
return this.chatNotification;
}
public AddAttendeeRequest setPushNotification(Boolean pushNotification) {
this.pushNotification = pushNotification;
return this;
}
public Boolean getPushNotification() {
return this.pushNotification;
}
public static class AddAttendeeRequestAttendeesToAdd extends TeaModel {
@NameInMap("id")
public String id;
@NameInMap("isOptional")
public Boolean isOptional;
public static AddAttendeeRequestAttendeesToAdd build(java.util.Map map) throws Exception {
AddAttendeeRequestAttendeesToAdd self = new AddAttendeeRequestAttendeesToAdd();
return TeaModel.build(map, self);
}
public AddAttendeeRequestAttendeesToAdd setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public AddAttendeeRequestAttendeesToAdd setIsOptional(Boolean isOptional) {
this.isOptional = isOptional;
return this;
}
public Boolean getIsOptional() {
return this.isOptional;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy