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

com.imsweb.seerapi.client.hcpcs.HcpcsService Maven / Gradle / Ivy

There is a newer version: 5.7
Show newest version
/*
 * 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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy