Increase.PhysicalCards.PhysicalCard.Shipment.Address (Increase v1.0.0)

Copy Markdown View Source

The location to where the card's packing label is addressed.

Fields

  • city - The city of the shipping address.
  • country - The country of the shipping address.
  • line1 - The first line of the shipping address.
  • line2 - The second line of the shipping address.
  • line3 - The third line of the shipping address.
  • name - The name of the recipient.
  • postal_code - The postal code of the shipping address.
  • state - The state of the shipping address.

Summary

Types

t()

@type t() :: %Increase.PhysicalCards.PhysicalCard.Shipment.Address{
  city: String.t(),
  country: String.t(),
  line1: String.t(),
  line2: String.t() | nil,
  line3: String.t() | nil,
  name: String.t(),
  postal_code: String.t(),
  state: String.t()
}