Update Payouts to v1.2

This commit is contained in:
sdcoffey
2016-10-13 11:04:49 -07:00
parent 3f98d9f182
commit 0f3a5e6548
12 changed files with 177 additions and 153 deletions

View File

@@ -7,7 +7,7 @@ use PayPal\Common\PayPalModel;
/**
* Class PayoutItemDetails
*
* This object contains status and other data for an individual payout of a batch.
* The payout item status and other details.
*
* @package PayPal\Api
*
@@ -25,7 +25,7 @@ use PayPal\Common\PayPalModel;
class PayoutItemDetails extends PayPalModel
{
/**
* An ID for an individual payout. Provided by PayPal, such as in the case of getting the status of a batch request. 30 characters max.
* The ID for the payout item. Viewable when you show details for a batch payout.
*
* @param string $payout_item_id
*
@@ -38,7 +38,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* An ID for an individual payout. Provided by PayPal, such as in the case of getting the status of a batch request. 30 characters max.
* The ID for the payout item. Viewable when you show details for a batch payout.
*
* @return string
*/
@@ -48,7 +48,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Generated ID for the transaction. 30 characters max.
* The PayPal-generated ID for the transaction.
*
* @param string $transaction_id
*
@@ -61,7 +61,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Generated ID for the transaction. 30 characters max.
* The PayPal-generated ID for the transaction.
*
* @return string
*/
@@ -71,7 +71,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Status of a transaction.
* The transaction status.
*
* @param string $transaction_status
*
@@ -84,7 +84,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Status of a transaction.
* The transaction status.
*
* @return string
*/
@@ -94,7 +94,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Amount of money in U.S. dollars for fees.
* The amount of money, in U.S. dollars, for fees.
*
* @param \PayPal\Api\Currency $payout_item_fee
*
@@ -107,7 +107,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Amount of money in U.S. dollars for fees.
* The amount of money, in U.S. dollars, for fees.
*
* @return \PayPal\Api\Currency
*/
@@ -117,7 +117,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* An ID for the batch payout. Generated by PayPal. 30 characters max.
* The PayPal-generated ID for the batch payout.
*
* @param string $payout_batch_id
*
@@ -130,7 +130,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* An ID for the batch payout. Generated by PayPal. 30 characters max.
* The PayPal-generated ID for the batch payout.
*
* @return string
*/
@@ -140,7 +140,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Sender-created ID for tracking the batch in an accounting system. 30 characters max.
* A sender-specified ID number. Tracks the batch payout in an accounting system.
*
* @param string $sender_batch_id
*
@@ -153,7 +153,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Sender-created ID for tracking the batch in an accounting system. 30 characters max.
* A sender-specified ID number. Tracks the batch payout in an accounting system.
*
* @return string
*/
@@ -163,7 +163,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* The data for a payout item that the sender initially provided.
* The sender-provided information for the payout item.
*
* @param \PayPal\Api\PayoutItem $payout_item
*
@@ -176,7 +176,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* The data for a payout item that the sender initially provided.
* The sender-provided information for the payout item.
*
* @return \PayPal\Api\PayoutItem
*/
@@ -186,7 +186,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Time of the last processing for this item.
* The date and time when this item was last processed.
*
* @param string $time_processed
*
@@ -199,7 +199,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Time of the last processing for this item.
* The date and time when this item was last processed.
*
* @return string
*/
@@ -209,7 +209,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Sets Error
* Sets Errors
*
* @param \PayPal\Api\Error $errors
*
@@ -222,7 +222,7 @@ class PayoutItemDetails extends PayPalModel
}
/**
* Gets Error
* Gets Errors
*
* @return \PayPal\Api\Error
*/