UNPKG

finerio-pfm-unnax

Version:

This SDK lets you connect to [Finerio PFM API Unnax](http://ec2-3-16-174-50.us-east-2.compute.amazonaws.com:8082/swagger-ui/index.html#/) in an easier way.

12 lines (11 loc) 447 B
import { ICategoryAnalysis } from "../../../interfaces/insights"; import SubcategoryAnalysis from "./SubcategoryAnalysis"; export default class CategoryAnalysis implements ICategoryAnalysis { private _categoryId; private _amount; private _subcategories; constructor({ categoryId, amount, subcategories }: ICategoryAnalysis); get categoryId(): number; get amount(): number; get subcategories(): SubcategoryAnalysis[]; }