pinxs v0.1.1 PINXS.Transfers.Transfer View Source

Proived functions for creating and working with transfers

Link to this section Summary

Functions

Create a transfer

Gets a transfer

Gets a paginated list of transfers

Gets a specific pages of transfers

Link to this section Types

Link to this type t() View Source
t() :: %PINXS.Transfers.Transfer{
  amount: integer(),
  bank_account: nil | PINXS.BankAccounts.BankAccount,
  created_at: nil | String.t(),
  currency: nil | String.t(),
  description: nil | String.t(),
  paid_at: nil | String.t(),
  recipient: String.t(),
  reference: String.t(),
  status: nil | String.t(),
  token: nil | String.t(),
  total_credits: nil | integer(),
  total_debits: nil | integer()
}

Link to this section Functions

Create a transfer

Gets a transfer

Gets a paginated list of transfers

Gets a specific pages of transfers

Link to this function get_line_items(transfer_token) View Source