com.aliyun.sdk.service.cloudapi20160714.models.CreateBackendModelResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Alibaba Cloud CloudAPI (20160714) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateBackendModelResponseBody} extends {@link TeaModel}
*
* CreateBackendModelResponseBody
*/
public class CreateBackendModelResponseBody extends TeaModel {
@NameInMap("BackendModelId")
private String backendModelId;
@NameInMap("RequestId")
private String requestId;
private CreateBackendModelResponseBody(Builder builder) {
this.backendModelId = builder.backendModelId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateBackendModelResponseBody create() {
return builder().build();
}
/**
* @return backendModelId
*/
public String getBackendModelId() {
return this.backendModelId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String backendModelId;
private String requestId;
/**
* BackendModelId.
*/
public Builder backendModelId(String backendModelId) {
this.backendModelId = backendModelId;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateBackendModelResponseBody build() {
return new CreateBackendModelResponseBody(this);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy