@oystehr/sdk
Version:
Oystehr SDK
30 lines (28 loc) • 515 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
/**
* HCPCS code search results
*/
export interface TerminologySearchHcpcsResponse {
/**
* Array of HCPCS codes matching the search.
*/
codes: {
/**
* HCPCS code.
*/
code: string;
/**
* Human-readable description of the HCPCS code.
*/
display: string;
}[];
/**
* Pagination metadata.
*/
metadata: {
/**
* Cursor for the next page of results. Null if no more results.
*/
nextCursor: string | null;
};
}