com.aliyun.dingtalkedu_1_0.models.ReportDeviceLogRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class ReportDeviceLogRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* xdfsf20001
*/
@NameInMap("mediaId")
public String mediaId;
/**
* This parameter is required.
*
* example:
* sn123
*/
@NameInMap("sn")
public String sn;
/**
* This parameter is required.
*
* example:
* file:普通文件
*/
@NameInMap("type")
public String type;
public static ReportDeviceLogRequest build(java.util.Map map) throws Exception {
ReportDeviceLogRequest self = new ReportDeviceLogRequest();
return TeaModel.build(map, self);
}
public ReportDeviceLogRequest setMediaId(String mediaId) {
this.mediaId = mediaId;
return this;
}
public String getMediaId() {
return this.mediaId;
}
public ReportDeviceLogRequest setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
public ReportDeviceLogRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}