Paypal.Subscription.Plan.List (Paypal v0.2.0)

Copy Markdown View Source

Plan list response returned from the PayPal Billing Plans API.

Official PayPal API Documentation: List Plans

Summary

Types

t()

Plan list structure

Types

t()

@type t() :: %Paypal.Subscription.Plan.List{
  links: [Paypal.Common.Link.t()],
  plans: [Paypal.Subscription.Plan.Info.t()],
  total_items: integer() | nil,
  total_pages: integer() | nil
}

Plan list structure:

  • plans - List of plan items.
  • total_items - Total count of items available across pages.
  • total_pages - Total number of pages available.
  • links - HATEOAS pagination links.