BudgetShallow
Request body fields required and optional to operate on Budget data. This bean is shallow, which means its potential relationship fields to other Org Unit fields are simple ids. No Org Unit WsDTO should be declared in this bean to avoid circular references. BudgetShallow
export interface BudgetShallow {
'active'?: boolean;
'budget'?: number;
'code'?: string;
'currency'?: Currency;
'endDate'?: string;
'name'?: string;
'selected'?: boolean;
'startDate'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
active | Optional | boolean | Boolean flag of whether the Budget is active {boolean} BudgetShallow |
budget | Optional | number | Value of Budget {number} BudgetShallow |
code | Optional | string | Code of the Budget {string} BudgetShallow |
currency | Optional | Currency | {Currency} BudgetShallow |
endDate | Optional | string | The end date of the Budget {string} BudgetShallow |
name | Optional | string | The name of the Budget {string} BudgetShallow |
selected | Optional | boolean | Boolean flag whether the budget is selected for a cost center {boolean} BudgetShallow |
startDate | Optional | string | The start date of the Budget {string} BudgetShallow |