com.aliyun.sdk.service.iot20180120.models.OpenIotServiceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-iot20180120 Show documentation
Show all versions of alibabacloud-iot20180120 Show documentation
Alibaba Cloud Iot (20180120) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.iot20180120.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link OpenIotServiceRequest} extends {@link RequestModel}
*
* OpenIotServiceRequest
*/
public class OpenIotServiceRequest extends Request {
@Query
@NameInMap("OwnerId")
private Long ownerId;
private OpenIotServiceRequest(Builder builder) {
super(builder);
this.ownerId = builder.ownerId;
}
public static Builder builder() {
return new Builder();
}
public static OpenIotServiceRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return ownerId
*/
public Long getOwnerId() {
return this.ownerId;
}
public static final class Builder extends Request.Builder {
private Long ownerId;
private Builder() {
super();
}
private Builder(OpenIotServiceRequest request) {
super(request);
this.ownerId = request.ownerId;
}
/**
* OwnerId.
*/
public Builder ownerId(Long ownerId) {
this.putQueryParameter("OwnerId", ownerId);
this.ownerId = ownerId;
return this;
}
@Override
public OpenIotServiceRequest build() {
return new OpenIotServiceRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy