BudgetList
Representation of a Budget List BudgetList
export interface BudgetList {
'budgets'?: Array<Budget>;
'pagination'?: DeprecatedPagination;
'sorts'?: Array<Sort>;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
budgets | Optional | Array<Budget> | List of Budgets {Array<Budget>} BudgetList |
pagination | Optional | DeprecatedPagination | {DeprecatedPagination} BudgetList |
sorts | Optional | Array<Sort> | List of sorts {Array<Sort>} BudgetList |