Interface FinancialImpactInit

Plain-object form of FinancialImpact.

interface FinancialImpactInit {
    fee?:
        | string
        | number
        | bigint
        | Fee;
    pnl?:
        | string
        | number
        | bigint
        | Pnl;
}

Properties

Properties

fee?:
    | string
    | number
    | bigint
    | Fee
pnl?:
    | string
    | number
    | bigint
    | Pnl