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

com.mypurecloud.sdk.v2.ApiRequest Maven / Gradle / Ivy

There is a newer version: 14.3.0
Show newest version
package com.mypurecloud.sdk.v2.guest;

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