Budget
Budget. Budget
export interface Budget {
'active'?: boolean;
'budget'?: number;
'code'?: string;
'costCenters'?: Array<B2BCostCenter>;
'currency'?: Currency;
'endDate'?: string;
'name'?: string;
'orgUnit'?: B2BUnit;
'selected'?: boolean;
'startDate'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
active | Optional | boolean | Boolean flag of whether the Budget is active {boolean} Budget |
budget | Optional | number | Value of Budget {number} Budget |
code | Optional | string | Code of the Budget {string} Budget |
costCenters | Optional | Array<B2BCostCenter> | List of Cost Centers {Array<B2BCostCenter>} Budget |
currency | Optional | Currency | {Currency} Budget |
endDate | Optional | string | The end date of the Budget {string} Budget |
name | Optional | string | The name of the Budget {string} Budget |
orgUnit | Optional | B2BUnit | {B2BUnit} Budget |
selected | Optional | boolean | Boolean flag whether the budget is selected for a cost center {boolean} Budget |
startDate | Optional | string | The start date of the Budget {string} Budget |