com.aliyun.iot20180120.models.OpenIotServiceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class OpenIotServiceRequest extends TeaModel {
@NameInMap("OwnerId")
public Long ownerId;
public static OpenIotServiceRequest build(java.util.Map map) throws Exception {
OpenIotServiceRequest self = new OpenIotServiceRequest();
return TeaModel.build(map, self);
}
public OpenIotServiceRequest setOwnerId(Long ownerId) {
this.ownerId = ownerId;
return this;
}
public Long getOwnerId() {
return this.ownerId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy