com.aliyun.sdk.service.iot20180120.models.OpenIotServiceResponseBody 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 OpenIotServiceResponseBody} extends {@link TeaModel}
*
* OpenIotServiceResponseBody
*/
public class OpenIotServiceResponseBody extends TeaModel {
@NameInMap("OrderId")
private String orderId;
@NameInMap("RequestId")
private String requestId;
private OpenIotServiceResponseBody(Builder builder) {
this.orderId = builder.orderId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static OpenIotServiceResponseBody create() {
return builder().build();
}
/**
* @return orderId
*/
public String getOrderId() {
return this.orderId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String orderId;
private String requestId;
/**
* OrderId.
*/
public Builder orderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public OpenIotServiceResponseBody build() {
return new OpenIotServiceResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy