com.aliyun.sdk.service.cloudapi20160714.models.ExportOASResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Alibaba Cloud CloudAPI (20160714) Async SDK for Java
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 ExportOASResponseBody} extends {@link TeaModel}
*
* ExportOASResponseBody
*/
public class ExportOASResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Data")
private String data;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private ExportOASResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ExportOASResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public String getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String data;
private String requestId;
/**
* The Base64-encoded data of the exported Swagger file. You can obtain the file by using Base64 decoding.
*
* example:
* UEsDBBQACAAIAABc8FgAAAAAAAAAAAAAAAA...
*/
public Builder data(String data) {
this.data = data;
return this;
}
/**
* The request ID.
*
* example:
* CEF72CEB-54B6-4AE8-B225-F876xxxxxxxx
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ExportOASResponseBody build() {
return new ExportOASResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy