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