com.aliyun.dingtalkdevicemng_1_0.models.RegisterAndActivateDeviceRequest 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.dingtalkdevicemng_1_0.models;
import com.aliyun.tea.*;
public class RegisterAndActivateDeviceRequest extends TeaModel {
@NameInMap("deviceCallbackUrl")
public String deviceCallbackUrl;
// 设备分类(0:设备,1 : 助手)
@NameInMap("deviceCategory")
public Integer deviceCategory;
@NameInMap("deviceCode")
public String deviceCode;
@NameInMap("deviceDetailUrl")
public String deviceDetailUrl;
@NameInMap("deviceName")
public String deviceName;
@NameInMap("introduction")
public String introduction;
@NameInMap("roleUuid")
public String roleUuid;
@NameInMap("typeUuid")
public String typeUuid;
@NameInMap("userIds")
public java.util.List userIds;
public static RegisterAndActivateDeviceRequest build(java.util.Map map) throws Exception {
RegisterAndActivateDeviceRequest self = new RegisterAndActivateDeviceRequest();
return TeaModel.build(map, self);
}
public RegisterAndActivateDeviceRequest setDeviceCallbackUrl(String deviceCallbackUrl) {
this.deviceCallbackUrl = deviceCallbackUrl;
return this;
}
public String getDeviceCallbackUrl() {
return this.deviceCallbackUrl;
}
public RegisterAndActivateDeviceRequest setDeviceCategory(Integer deviceCategory) {
this.deviceCategory = deviceCategory;
return this;
}
public Integer getDeviceCategory() {
return this.deviceCategory;
}
public RegisterAndActivateDeviceRequest setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
return this;
}
public String getDeviceCode() {
return this.deviceCode;
}
public RegisterAndActivateDeviceRequest setDeviceDetailUrl(String deviceDetailUrl) {
this.deviceDetailUrl = deviceDetailUrl;
return this;
}
public String getDeviceDetailUrl() {
return this.deviceDetailUrl;
}
public RegisterAndActivateDeviceRequest setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public RegisterAndActivateDeviceRequest setIntroduction(String introduction) {
this.introduction = introduction;
return this;
}
public String getIntroduction() {
return this.introduction;
}
public RegisterAndActivateDeviceRequest setRoleUuid(String roleUuid) {
this.roleUuid = roleUuid;
return this;
}
public String getRoleUuid() {
return this.roleUuid;
}
public RegisterAndActivateDeviceRequest setTypeUuid(String typeUuid) {
this.typeUuid = typeUuid;
return this;
}
public String getTypeUuid() {
return this.typeUuid;
}
public RegisterAndActivateDeviceRequest setUserIds(java.util.List userIds) {
this.userIds = userIds;
return this;
}
public java.util.List getUserIds() {
return this.userIds;
}
}