> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tesouro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# FeeDetails

`OBJECT`

## Fields

<ResponseField name="summary" type="FeeSummaryTotals!" required>
  Total amount of various fee types.

  <Expandable title="child attributes">
    <ResponseField name="interchangeAmount" type="Decimal!" required>
      The total amount of interchange fees collected.
    </ResponseField>

    <ResponseField name="networkAmount" type="Decimal!" required>
      The total amount of network fees collected.
    </ResponseField>

    <ResponseField name="partnerAmount" type="Decimal!" required>
      The total amount of partner fees collected.
    </ResponseField>

    <ResponseField name="processorAmount" type="Decimal!" required>
      The total amount of processor fees collected.
    </ResponseField>

    <ResponseField name="totalAmount" type="Decimal!" required>
      The total amount of fees collected.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="items" type="[ItemizedFee!]!" required>
  An itemized collection of each fee applicable to the transaction entity.

  <Expandable title="child attributes">
    <ResponseField name="billableEventAmount" type="Decimal">
      The amount tied to the billable event on which the fee is applied.
    </ResponseField>

    <ResponseField name="calculatedAmount" type="Decimal!" required>
      The total amount of the fee, calculated as \[(billableEventAmount \* rateMultiplier) + rateUnitAmount]. e.g., $100.00 * 0.035 + $0.10 = \$3.60
    </ResponseField>

    <ResponseField name="currency" type="String!" required>
      The currency of the fee amount.
    </ResponseField>

    <ResponseField name="name" type="String!" required>
      The name of the itemized fee or allocation.
    </ResponseField>

    <ResponseField name="rateMultiplier" type="Decimal!" required>
      The variable rate, expressed as a decimal, used to calculate the total fee amount. e.g., 3.50% would be expressed as 0.035
    </ResponseField>

    <ResponseField name="rateUnitAmount" type="Decimal!" required>
      The fixed amount per transaction used in the rate to calculate the total fee amount. e.g., \$0.10 per transaction.
    </ResponseField>

    <ResponseField name="type" type="AllocationType!" required>
      The type of fee or allocation, e.g.. Interchange, Network fee, Processor fee, or Partner fee

      See [AllocationType](/acquiring/reference/graphql/types/allocation-type)
    </ResponseField>
  </Expandable>
</ResponseField>
