com.aliyun.sdk.service.ens20171110.models.ExportImageResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ens20171110 Show documentation
Show all versions of alibabacloud-ens20171110 Show documentation
Alibaba Cloud Ens (20171110) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ens20171110.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 ExportImageResponseBody} extends {@link TeaModel}
*
* ExportImageResponseBody
*/
public class ExportImageResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("ExportedImageURL")
private String exportedImageURL;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private ExportImageResponseBody(Builder builder) {
this.exportedImageURL = builder.exportedImageURL;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ExportImageResponseBody create() {
return builder().build();
}
/**
* @return exportedImageURL
*/
public String getExportedImageURL() {
return this.exportedImageURL;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String exportedImageURL;
private String requestId;
/**
* The URL that points to the exported image.
*
* example:
*
*/
public Builder exportedImageURL(String exportedImageURL) {
this.exportedImageURL = exportedImageURL;
return this;
}
/**
* The ID of the request.
*
* example:
* 43A426AD-3F2E-5DD9-9C08-D4DBDCA48D85
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ExportImageResponseBody build() {
return new ExportImageResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy