Paypal.Order.Info (Paypal v0.1.1)
View SourceOrder information. The information retrieved from Paypal about the order.
Summary
Types
@type t() :: %Paypal.Order.Info{ create_time: DateTime.t() | nil, id: String.t() | nil, intent: any() | nil, links: [Paypal.Common.Link.t()], payer: Paypal.Order.Payer.t() | nil, payment_source: map() | nil, purchase_units: [Paypal.Order.PurchaseUnit.t()], status: any() | nil, update_time: DateTime.t() | nil }
The information for the order containing:
idis the ID for the order.create_timeis the date and time when the order was created.intentcould becaptureorauthorize.linksare the HATEOAS about the following valid actions.purchase_unitsare the units inside of the order.statusfor the order.payment_sourceis a map that should contains the information about how the payment was made. If that was using PayPal credit, or card, or whatever else.