Interface representing the usage history of a budget within the MegaScript context.

interface BudgetUsageHistory {
    Budget: Budget;
    BudgetId: number;
    Details: string;
    UsedValue: number;
    UsedWithOrderId?: number;
}

Properties

Budget: Budget

The budget object associated with this usage history.

BudgetId: number

The identifier of the budget associated with this usage history.

Details: string

Additional details about the budget usage.

UsedValue: number

The amount used from the budget.

UsedWithOrderId?: number

The identifier of the order associated with this usage, if applicable.