StatusDetails.php 540 Bytes
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php
namespace Braintree\Transaction;

use Braintree\Instance;

/**
 * Status details from a transaction
 * Creates an instance of StatusDetails, as part of a transaction response
 *
 * @package    Braintree
 *
 * @property-read string    $amount
 * @property-read string    $status
 * @property-read \DateTime $timestamp
 * @property-read string    $transactionSource
 * @property-read string    $user
 */
class StatusDetails extends Instance
{
}
class_alias('Braintree\Transaction\StatusDetails', 'Braintree_Transaction_StatusDetails');