Unit.Resource.StopPayment (Unit v1.0.0)

Copy Markdown View Source

Represents an ACH or Check stop-payment order.

Types

  • achStopPayment
  • checkStopPayment

Statuses

  • Active — currently blocking matching payments
  • Disabled — deactivated

Summary

Types

t()

@type t() :: %Unit.Resource.StopPayment{
  account_id: String.t() | nil,
  amount: integer() | nil,
  check_number: String.t() | nil,
  created_at: DateTime.t() | nil,
  customer_id: String.t() | nil,
  description: String.t() | nil,
  direction: String.t() | nil,
  expiration: Date.t() | nil,
  id: String.t(),
  is_multi_use: boolean(),
  max_amount: integer() | nil,
  min_amount: integer() | nil,
  originator_name: [String.t()],
  status: String.t() | nil,
  tags: map(),
  type: String.t()
}