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

cloud.genesys.webmessaging.sdk.ApiResponse 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;

import java.util.Map;

public interface ApiResponse extends AutoCloseable {
    Exception getException();
    int getStatusCode();
    String getStatusReasonPhrase();
    boolean hasRawBody();
    String getRawBody();
    T getBody();
    Map getHeaders();
    String getHeader(String key);
    String getCorrelationId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy