com.aliyun.dingtalkflashmeeting_1_0.models.CreateFlashMeetingRequest 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.dingtalkflashmeeting_1_0.models;
import com.aliyun.tea.*;
public class CreateFlashMeetingRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("creator")
public String creator;
/**
* This parameter is required.
*/
@NameInMap("eventId")
public String eventId;
@NameInMap("title")
public String title;
public static CreateFlashMeetingRequest build(java.util.Map map) throws Exception {
CreateFlashMeetingRequest self = new CreateFlashMeetingRequest();
return TeaModel.build(map, self);
}
public CreateFlashMeetingRequest setCreator(String creator) {
this.creator = creator;
return this;
}
public String getCreator() {
return this.creator;
}
public CreateFlashMeetingRequest setEventId(String eventId) {
this.eventId = eventId;
return this;
}
public String getEventId() {
return this.eventId;
}
public CreateFlashMeetingRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}