com.volcengine.service.maas.response.BinaryResponseContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.service.maas.response;
import java.io.InputStream;
public class BinaryResponseContent {
private final String requestId;
private final InputStream response;
public BinaryResponseContent(InputStream response, String requestId) {
this.requestId = requestId;
this.response = response;
}
public String getRequestId() {
return requestId;
}
public InputStream getResponse() {
return response;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy