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

cloud.genesys.webmessaging.sdk.ApiRequest Maven / Gradle / Ivy

package cloud.genesys.webmessaging.sdk;

import java.util.List;
import java.util.Map;

public interface ApiRequest {
    String getPath();
    String getMethod();
    Map getPathParams();
    List getQueryParams();
    Map getFormParams();
    Map getHeaderParams();
    Map getCustomHeaders();
    String getContentType();
    String getAccepts();
    T getBody();
    String[] getAuthNames();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy