feature-libs/organization/administration/core/model/budget.model.ts
Properties |
| active |
active:
|
Type : boolean
|
| Optional |
| budget |
budget:
|
Type : number
|
| Optional |
| code |
code:
|
Type : string
|
| Optional |
| costCenters |
costCenters:
|
Type : CostCenter[]
|
| Optional |
| currency |
currency:
|
Type : Currency
|
| Optional |
| endDate |
endDate:
|
Type : string
|
| Optional |
| name |
name:
|
Type : string
|
| Optional |
| orgUnit |
orgUnit:
|
Type : B2BUnit
|
| Optional |
| selected |
selected:
|
Type : boolean
|
| Optional |
| startDate |
startDate:
|
Type : string
|
| Optional |
import { Currency, B2BUnit, CostCenter } from '@spartacus/core';
export interface Budget {
active?: boolean;
budget?: number;
code?: string;
currency?: Currency;
endDate?: string;
startDate?: string;
name?: string;
orgUnit?: B2BUnit;
costCenters?: CostCenter[];
selected?: boolean;
}