Paypal.Payment.Info (Paypal v0.1.1)

View Source

Authorized order information.

Summary

Types

t()

The retrieved authorized order information is the following one

Types

t()

@type t() :: %Paypal.Payment.Info{
  amount: Paypal.Common.CurrencyValue.t() | nil,
  create_time: DateTime.t() | nil,
  expiration_time: DateTime.t() | nil,
  id: String.t() | nil,
  links: [Paypal.Common.Link.t()],
  payee: map() | nil,
  status: any() | nil
}

The retrieved authorized order information is the following one:

  • id for the authorized order ID.
  • create_time is the date and time when the order was created.
  • expiration_time is the date and time when the authorization expires.
  • amount is the price to be paid.
  • links are the possible actions to follow (HATEOAS).
  • payee is the information about who is paying the order.
  • status is the status for the authorized order.