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

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

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.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 CopyImageResponseBody} extends {@link TeaModel}
 *
 * 

CopyImageResponseBody

*/ public class CopyImageResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("ImageId") private String imageId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private CopyImageResponseBody(Builder builder) { this.imageId = builder.imageId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static CopyImageResponseBody create() { return builder().build(); } /** * @return imageId */ public String getImageId() { return this.imageId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String imageId; private String requestId; /** *

The ID of the image copy.

* * example: *

m-bp1h46wfpjsjastd****

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

The request ID.

* * example: *

473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy