Interface AccountAdjustmentBoundsInit

Plain-object form of AccountAdjustmentBounds. Every bound is optional.

interface AccountAdjustmentBoundsInit {
    balanceLower?:
        | string
        | number
        | bigint
        | PositionSize;
    balanceUpper?:
        | string
        | number
        | bigint
        | PositionSize;
    heldLower?:
        | string
        | number
        | bigint
        | PositionSize;
    heldUpper?:
        | string
        | number
        | bigint
        | PositionSize;
    incomingLower?:
        | string
        | number
        | bigint
        | PositionSize;
    incomingUpper?:
        | string
        | number
        | bigint
        | PositionSize;
}

Properties

balanceLower?:
    | string
    | number
    | bigint
    | PositionSize
balanceUpper?:
    | string
    | number
    | bigint
    | PositionSize
heldLower?:
    | string
    | number
    | bigint
    | PositionSize
heldUpper?:
    | string
    | number
    | bigint
    | PositionSize
incomingLower?:
    | string
    | number
    | bigint
    | PositionSize
incomingUpper?:
    | string
    | number
    | bigint
    | PositionSize