Alokai

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

NameRequiredTypeDescription
activeOptionalbooleanBoolean flag of whether the Budget is active {boolean} Budget
budgetOptionalnumberValue of Budget {number} Budget
codeOptionalstringCode of the Budget {string} Budget
costCentersOptionalArray<B2BCostCenter>List of Cost Centers {Array<B2BCostCenter>} Budget
currencyOptionalCurrency{Currency} Budget
endDateOptionalstringThe end date of the Budget {string} Budget
nameOptionalstringThe name of the Budget {string} Budget
orgUnitOptionalB2BUnit{B2BUnit} Budget
selectedOptionalbooleanBoolean flag whether the budget is selected for a cost center {boolean} Budget
startDateOptionalstringThe start date of the Budget {string} Budget

Referenced Types

On this page