com.aliyun.sdk.service.cs20151215.models.OpenAckServiceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cs20151215 Show documentation
Show all versions of alibabacloud-cs20151215 Show documentation
Alibaba Cloud CS (20151215) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cs20151215.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link OpenAckServiceResponseBody} extends {@link TeaModel}
*
* OpenAckServiceResponseBody
*/
public class OpenAckServiceResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("order_id")
private String orderId;
@com.aliyun.core.annotation.NameInMap("request_id")
private String requestId;
private OpenAckServiceResponseBody(Builder builder) {
this.orderId = builder.orderId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static OpenAckServiceResponseBody 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;
/**
* The ID of the order.
*/
public Builder orderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* The request ID.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public OpenAckServiceResponseBody build() {
return new OpenAckServiceResponseBody(this);
}
}
}