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

com.aliyun.dingtalkedu_1_0.models.InitVPaasDeviceRequest 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy