Increase.LockboxAddresses.LockboxAddress (Increase v1.0.0)

Copy Markdown View Source

Lockbox Addresses are physical locations that can receive mail containing paper checks.

Fields

  • id - The Lockbox Address identifier.
  • address - The mailing address for the Lockbox Address. It will be present after Increase generates it.
  • created_at - The ISO 8601 time at which the Lockbox Address was created.
  • description - The description you choose for the Lockbox Address.
  • idempotency_key - The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
  • status - The status of the Lockbox Address.
  • type - A constant representing the object's type. For this resource it will always be lockbox_address.

Summary

Types

t()

@type t() :: %Increase.LockboxAddresses.LockboxAddress{
  address: Increase.LockboxAddresses.LockboxAddress.Address.t() | nil,
  created_at: DateTime.t(),
  description: String.t() | nil,
  id: String.t(),
  idempotency_key: String.t() | nil,
  status: String.t(),
  type: String.t()
}