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

com.xendit.network.NetworkClient Maven / Gradle / Ivy

package com.xendit.network;

import com.xendit.exception.XenditException;
import java.util.Map;

public interface NetworkClient {
   T request(
      RequestResource.Method method,
      String url,
      Map params,
      String apiKey,
      Class clazz)
      throws XenditException;

   T request(
      RequestResource.Method method,
      String url,
      Map headers,
      Map params,
      String apiKey,
      Class clazz)
      throws XenditException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy