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

Copy Markdown View Source

Product information retrieved from the PayPal Catalog Products API.

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

Summary

Types

t()

Product details

Types

t()

@type t() :: %Paypal.Subscription.Product.Info{
  category: String.t() | nil,
  create_time: DateTime.t() | nil,
  description: String.t() | nil,
  home_url: String.t() | nil,
  id: String.t() | nil,
  image_url: String.t() | nil,
  links: [Paypal.Common.Link.t()],
  name: String.t() | nil,
  type: any() | nil,
  update_time: DateTime.t() | nil
}

Product details:

  • id - The unique product ID.
  • name - The product name.
  • description - The product description.
  • type - The product type (:physical, :digital, or :service).
  • category - The product category.
  • image_url - The image URL for the product.
  • home_url - The home URL for the product.
  • create_time - The date and time when the product was created.
  • update_time - The date and time when the product was last updated.
  • links - HATEOAS links related to the product.