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

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

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
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 { @com.aliyun.core.annotation.NameInMap("OperationId") private String operationId; @com.aliyun.core.annotation.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; /** *

The ID of the operation.

* * example: *

f7834d74be4e41aa8e607b0fafae9b33

*/ public Builder operationId(String operationId) { this.operationId = operationId; return this; } /** *

The ID of the request.

* * example: *

D1B18FFE-4A81-59D8-AA02-1817098977CD

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DeleteBackendModelResponseBody build() { return new DeleteBackendModelResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy