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

# The payment object

Payments are all payments registered on a customer.
Look at Payouts to find the corresponding payments on your bank account.

### Attributes

<ResponseField name="id" type="string">
  The unique identifier for the payment
</ResponseField>

<ResponseField name="paymentDate" type="date">
  The date the payment was made
</ResponseField>

<ResponseField name="net" type="object">
  The net amount of the payment

  <Expandable>
    <ResponseField name="currency" type="string">
      The currency code for the net amount (e.g., "DKK")
    </ResponseField>

    <ResponseField name="amount" type="number">
      The amount of the net amount (e.g., 100.00)
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="fees" type="object">
  The fees subtracted from the payment

  <Expandable>
    <ResponseField name="currency" type="string">
      The currency code for the fees amount (e.g., "DKK")
    </ResponseField>

    <ResponseField name="amount" type="number">
      The amount of the fees amount (e.g., 100.00)
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="gross" type="object">
  The gross amount of the payment

  <Expandable>
    <ResponseField name="currency" type="string">
      The currency code for the gross amount (e.g., "DKK")
    </ResponseField>

    <ResponseField name="amount" type="number">
      The amount of the gross amount (e.g., 100.00)
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="payoutId" type="String">
  The payout that resulted from this payment
</ResponseField>

<ResponseField name="leaseId" type="String">
  The lease identifier that this payment was made to
</ResponseField>
