File

feature-libs/organization/administration/core/model/budget.model.ts

Index

Properties

Properties

active
active: boolean
Type : boolean
Optional
budget
budget: number
Type : number
Optional
code
code: string
Type : string
Optional
costCenters
costCenters: CostCenter[]
Type : CostCenter[]
Optional
currency
currency: Currency
Type : Currency
Optional
endDate
endDate: string
Type : string
Optional
name
name: string
Type : string
Optional
orgUnit
orgUnit: B2BUnit
Type : B2BUnit
Optional
selected
selected: boolean
Type : boolean
Optional
startDate
startDate: string
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;
}

result-matching ""

    No results matching ""