com.imsweb.seerapi.client.hcpcs.HcpcsService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seerapi-client-java Show documentation
Show all versions of seerapi-client-java Show documentation
API mapping for SEER*API in Java
/*
* Copyright (C) 2015 Information Management Services, Inc.
*/
package com.imsweb.seerapi.client.hcpcs;
import java.util.List;
import java.util.Map;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Path;
import retrofit2.http.QueryMap;
public interface HcpcsService {
/**
* Return an HCPCS entity based on code.
*/
@GET("hcpcs/code/{code}")
Call getProcedure(@Path("code") String code);
/**
* Return a list of matching HCPCS procedures
*/
@GET("hcpcs")
Call> search(@QueryMap Map searchParams);
}