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

com.aliyun.sdk.service.ecs20140526.models.ImportSnapshotResponseBody Maven / Gradle / Ivy

There is a newer version: 6.0.4
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;

import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link ImportSnapshotResponseBody} extends {@link TeaModel}
 *
 * 

ImportSnapshotResponseBody

*/ public class ImportSnapshotResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; @NameInMap("SnapshotId") private String snapshotId; @NameInMap("TaskId") private String taskId; private ImportSnapshotResponseBody(Builder builder) { this.requestId = builder.requestId; this.snapshotId = builder.snapshotId; this.taskId = builder.taskId; } public static Builder builder() { return new Builder(); } public static ImportSnapshotResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return snapshotId */ public String getSnapshotId() { return this.snapshotId; } /** * @return taskId */ public String getTaskId() { return this.taskId; } public static final class Builder { private String requestId; private String snapshotId; private String taskId; /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * SnapshotId. */ public Builder snapshotId(String snapshotId) { this.snapshotId = snapshotId; return this; } /** * TaskId. */ public Builder taskId(String taskId) { this.taskId = taskId; return this; } public ImportSnapshotResponseBody build() { return new ImportSnapshotResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy