All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkedu_1_0.models.ReportDeviceLogRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy