com.aliyun.dingtalkcalendar_1_0.models.AddAttendeeRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}
}