From fcda04acf1bddbb0864fbec060443781736917cb Mon Sep 17 00:00:00 2001 From: Ibby Date: Mon, 3 Oct 2016 16:56:15 -0400 Subject: [PATCH] add missing docs --- src/plugins/pay-pal.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/plugins/pay-pal.ts b/src/plugins/pay-pal.ts index ce4a4651..0fdc2a86 100644 --- a/src/plugins/pay-pal.ts +++ b/src/plugins/pay-pal.ts @@ -21,7 +21,6 @@ import { Plugin, Cordova } from './plugin'; * PayPalPayment * PayPAlItem * PayPalPaymentDetails - * PayPalConfiguration * PayPalConfigurationOptions * PayPalShippingAddress */ @@ -155,10 +154,25 @@ export interface PayPalPayment { } export interface PayPalItem { + /** + * Name of the item. 127 characters max + */ name: string; + /** + * Number of units. 10 characters max. + */ quantity: number; + /** + * Unit price for this item 10 characters max. + */ price: string; + /** + * ISO standard currency code. + */ currency: string; + /** + * The stock keeping unit for this item. 50 characters max (optional) + */ sku: string; }