com.aliyun.dingtalkconference_1_0.models.UpdateScheduleConferenceRequest 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.dingtalkconference_1_0.models;
import com.aliyun.tea.*;
public class UpdateScheduleConferenceRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* qzR1iSMDvzR9iP7Pxxxxxxxxxxxx
*/
@NameInMap("creatorUnionId")
public String creatorUnionId;
/**
* This parameter is required.
*
* example:
* 1687928400000
*/
@NameInMap("endTime")
public Long endTime;
/**
* This parameter is required.
*
* example:
* 2a489xxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
*/
@NameInMap("scheduleConferenceId")
public String scheduleConferenceId;
/**
* This parameter is required.
*
* example:
* 1687924800000
*/
@NameInMap("startTime")
public Long startTime;
/**
* This parameter is required.
*
* example:
* 预约会议标题
*/
@NameInMap("title")
public String title;
public static UpdateScheduleConferenceRequest build(java.util.Map map) throws Exception {
UpdateScheduleConferenceRequest self = new UpdateScheduleConferenceRequest();
return TeaModel.build(map, self);
}
public UpdateScheduleConferenceRequest setCreatorUnionId(String creatorUnionId) {
this.creatorUnionId = creatorUnionId;
return this;
}
public String getCreatorUnionId() {
return this.creatorUnionId;
}
public UpdateScheduleConferenceRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public UpdateScheduleConferenceRequest setScheduleConferenceId(String scheduleConferenceId) {
this.scheduleConferenceId = scheduleConferenceId;
return this;
}
public String getScheduleConferenceId() {
return this.scheduleConferenceId;
}
public UpdateScheduleConferenceRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public UpdateScheduleConferenceRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}