View Source ExOAPI.Stripe.Schemas.IssuingCardShipping (exoapi_stripe v0.1.4)

:address :: ExOAPI.Stripe.Schemas.Address

:carrier :: :string

The delivery company that shipped a card.

:eta :: :integer

A unix timestamp representing a best estimate of when the card will be delivered.

:name :: :string

Recipient name.

:service :: :string

Shipment service, such as standard or express.

:status :: :string

The delivery status of the card.

:tracking_number :: :string

A tracking number for a card shipment.

:tracking_url :: :string

A link to the shipping carrier's site where you can view detailed information about a card shipment.

:type :: :string

Packaging options.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.IssuingCardShipping{
  address: ExOAPI.Stripe.Schemas.Address.t() | nil,
  carrier: (:usps | :royal_mail | :fedex | :dhl) | nil,
  eta: integer() | nil,
  name: String.t() | nil,
  service: (:standard | :priority | :express) | nil,
  status:
    (:shipped | :returned | :pending | :failure | :delivered | :canceled) | nil,
  tracking_number: String.t() | nil,
  tracking_url: String.t() | nil,
  type: (:individual | :bulk) | nil
}

Link to this section Functions

Link to this function

changeset(struct \\ %__MODULE__{}, params)

View Source
@spec changeset(t(), params()) :: Ecto.Changeset.t()