All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.cloudapi20160714.models.DeleteBackendModelResponseBody Maven / Gradle / Ivy

There is a newer version: 3.0.23
Show newest version
// 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 DeleteBackendModelResponseBody} extends {@link TeaModel}
 *
 * 

DeleteBackendModelResponseBody

*/ public class DeleteBackendModelResponseBody extends TeaModel { @NameInMap("OperationId") private String operationId; @NameInMap("RequestId") private String requestId; private DeleteBackendModelResponseBody(Builder builder) { this.operationId = builder.operationId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DeleteBackendModelResponseBody create() { return builder().build(); } /** * @return operationId */ public String getOperationId() { return this.operationId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String operationId; private String requestId; /** * OperationId. */ public Builder operationId(String operationId) { this.operationId = operationId; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DeleteBackendModelResponseBody build() { return new DeleteBackendModelResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy