cloud.genesys.webmessaging.sdk.connector.ApiClientConnectorResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-messaging-sdk Show documentation
Show all versions of web-messaging-sdk Show documentation
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;
}