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

com.mypurecloud.sdk.v2.connector.ApiClientConnectorResponse Maven / Gradle / Ivy

There is a newer version: 14.3.0
Show newest version
package com.mypurecloud.sdk.v2.guest.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