mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-20 01:22:52 +08:00
add missing docs
This commit is contained in:
parent
83ac4c7bbe
commit
fcda04acf1
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user