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

cloud.genesys.webmessaging.sdk.connector.ApiClientConnectorResponse Maven / Gradle / Ivy

Go to download

A customer-side development kit for creating custom Genesys Cloud Web Messaging experiences

The newest version!
package cloud.genesys.webmessaging.sdk.connector;

import java.io.IOException;
import java.io.InputStream;
import java.util.Map;

public interface ApiClientConnectorResponse extends AutoCloseable {
    int getStatusCode();
    String getStatusReasonPhrase();
    Map getHeaders();
    boolean hasBody();
    String readBody() throws IOException;
    InputStream getBody() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy