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

com.volcengine.service.maas.response.BinaryResponseContent Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
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