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