harvest
Version:
Harvest API client library
12 lines (11 loc) • 442 B
TypeScript
import { EstimateItemCategoriesPagenationParameters, EstimateItemCategory } from '../models/estimateItemCategories.models';
export declare class EstimateItemCategoriesAPI {
harvest: any;
baseUrl: string;
constructor(harvest: any);
get(id: any): any;
list(query: EstimateItemCategoriesPagenationParameters): any;
create(data: EstimateItemCategory): any;
update(id: any, data: any): any;
delete(id: any): any;
}