@cfxlabsinc/b2b-services
    Preparing search index...
    FeeItem: { receiver: "PROVIDER" | "CFX" | "CUSTOMER" } & (
        | { feeAmount: string; type: "FIXED" }
        | { feeBps: string; type: "VARIABLE" }
    )

    A single fee line item. Shared between product_fee_config.config.rules[].value and product_route.fee.

    Type Declaration

    • receiver: "PROVIDER" | "CFX" | "CUSTOMER"

      Who receives the proceeds.

    • { feeAmount: string; type: "FIXED" }
      • feeAmount: string

        Fixed amount to charge, number string. Currency is product-defined.

      • type: "FIXED"
    • { feeBps: string; type: "VARIABLE" }
      • feeBps: string

        Basis points of the amount, number string.

      • type: "VARIABLE"