Increase.Cards.Card.BillingAddress (Increase v1.0.0)

Copy Markdown View Source

The Card's billing address.

Fields

  • city - The city of the billing address.
  • line1 - The first line of the billing address.
  • line2 - The second line of the billing address.
  • postal_code - The postal code of the billing address.
  • state - The US state of the billing address.

Summary

Types

t()

@type t() :: %Increase.Cards.Card.BillingAddress{
  city: String.t() | nil,
  line1: String.t() | nil,
  line2: String.t() | nil,
  postal_code: String.t() | nil,
  state: String.t() | nil
}