com.aliyun.dingtalkedu_1_0.models.DeactivateDeviceRequest 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 DeactivateDeviceRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* model1
*/
@NameInMap("model")
public String model;
/**
* This parameter is required.
*
* example:
* fdafds-432432
*/
@NameInMap("sn")
public String sn;
/**
* This parameter is required.
*
* example:
* VIDEO_CALL
*/
@NameInMap("type")
public String type;
public static DeactivateDeviceRequest build(java.util.Map map) throws Exception {
DeactivateDeviceRequest self = new DeactivateDeviceRequest();
return TeaModel.build(map, self);
}
public DeactivateDeviceRequest setModel(String model) {
this.model = model;
return this;
}
public String getModel() {
return this.model;
}
public DeactivateDeviceRequest setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
public DeactivateDeviceRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}