Increase.CheckTransfers.CheckTransfer.Submission.SubmittedAddress (Increase v1.0.0)

Copy Markdown View Source

The address we submitted to the printer. This is what is physically printed on the check.

Fields

  • city - The submitted address city.
  • line1 - The submitted address line 1.
  • line2 - The submitted address line 2.
  • recipient_name - The submitted recipient name.
  • state - The submitted address state.
  • zip - The submitted address zip.

Summary

Types

t()

@type t() :: %Increase.CheckTransfers.CheckTransfer.Submission.SubmittedAddress{
  city: String.t(),
  line1: String.t(),
  line2: String.t() | nil,
  recipient_name: String.t(),
  state: String.t(),
  zip: String.t()
}