@openpit/engine
    Preparing search index...

    Class AccountAdjustmentAmount

    Per-field adjustment amounts for balance, held, and incoming buckets.

    Index
    • get balance(): AdjustmentAmount | undefined

      The balance-bucket amount, or undefined.

      Returns AdjustmentAmount | undefined

    • set balance(value: AdjustmentAmount | null | undefined): void

      Sets the balance-bucket amount.

      Errors

      Throws ParamError when value is not an AdjustmentAmount.

      Parameters

      Returns void

    • get held(): AdjustmentAmount | undefined

      The held-bucket amount, or undefined.

      Returns AdjustmentAmount | undefined

    • set held(value: AdjustmentAmount | null | undefined): void

      Sets the held-bucket amount.

      Errors

      Throws ParamError when value is not an AdjustmentAmount.

      Parameters

      Returns void

    • get incoming(): AdjustmentAmount | undefined

      The incoming-bucket amount, or undefined.

      Returns AdjustmentAmount | undefined

    • set incoming(value: AdjustmentAmount | null | undefined): void

      Sets the incoming-bucket amount.

      Errors

      Throws ParamError when value is not an AdjustmentAmount.

      Parameters

      Returns void

    • Returns void

    • Returns void