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

Copy Markdown View Source

Product list response returned from the PayPal Catalog Products API.

For more details, see the PayPal Catalog Products API documentation.

Summary

Types

t()

Product list structure

Types

t()

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

Product list structure:

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