com.aliyun.dingtalkedu_1_0.models.InitVPaasDeviceRequest 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 InitVPaasDeviceRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* fsdfdsa-41231
*/
@NameInMap("sn")
public String sn;
@NameInMap("timestamp")
public Long timestamp;
/**
* This parameter is required.
*
* example:
* VIDEO_CALL
*/
@NameInMap("type")
public String type;
public static InitVPaasDeviceRequest build(java.util.Map map) throws Exception {
InitVPaasDeviceRequest self = new InitVPaasDeviceRequest();
return TeaModel.build(map, self);
}
public InitVPaasDeviceRequest setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
public InitVPaasDeviceRequest setTimestamp(Long timestamp) {
this.timestamp = timestamp;
return this;
}
public Long getTimestamp() {
return this.timestamp;
}
public InitVPaasDeviceRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}