Increase.CheckTransfers.CheckTransfer.PhysicalCheck.MailingAddress (Increase v1.0.0)

Copy Markdown View Source

Details for where Increase will mail the check.

Fields

  • city - The city of the check's destination.
  • line1 - The street address of the check's destination.
  • line2 - The second line of the address of the check's destination.
  • name - The name component of the check's mailing address.
  • phone - The phone number to be used in case of delivery issues at the check's mailing address. Only used for FedEx overnight shipping.
  • postal_code - The postal code of the check's destination.
  • state - The state of the check's destination.

Summary

Types

t()

@type t() :: %Increase.CheckTransfers.CheckTransfer.PhysicalCheck.MailingAddress{
  city: String.t() | nil,
  line1: String.t() | nil,
  line2: String.t() | nil,
  name: String.t() | nil,
  phone: String.t() | nil,
  postal_code: String.t() | nil,
  state: String.t() | nil
}