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

com.aliyun.sdk.service.ens20171110.models.ExportImageResponseBody Maven / Gradle / Ivy

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: *

http://oss.url

*/ 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