com.aliyun.dingtalkcalendar_1_0.models.ConvertLegacyEventIdRequest 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 ConvertLegacyEventIdRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("legacyEventIds")
public java.util.List legacyEventIds;
public static ConvertLegacyEventIdRequest build(java.util.Map map) throws Exception {
ConvertLegacyEventIdRequest self = new ConvertLegacyEventIdRequest();
return TeaModel.build(map, self);
}
public ConvertLegacyEventIdRequest setLegacyEventIds(java.util.List legacyEventIds) {
this.legacyEventIds = legacyEventIds;
return this;
}
public java.util.List getLegacyEventIds() {
return this.legacyEventIds;
}
}