Updated Client Detail Header for better mobile fit, lots of progress on stripe pay and some other minor updates

This commit is contained in:
johnny@pittpc.com
2019-09-13 20:33:00 -04:00
parent 5f30dbf9a9
commit 59ce30bd79
178 changed files with 25119 additions and 7 deletions

30
vendor/stripe-php-7.0.2/lib/TaxRate.php vendored Normal file
View File

@@ -0,0 +1,30 @@
<?php
namespace Stripe;
/**
* Class TaxRate
*
* @property string $id
* @property string $object
* @property bool $active
* @property int $created
* @property string $description
* @property string $display_name
* @property bool $inclusive
* @property string $jurisdiction
* @property bool $livemode
* @property StripeObject $metadata
* @property float $percentage
*
* @package Stripe
*/
class TaxRate extends ApiResource
{
const OBJECT_NAME = "tax_rate";
use ApiOperations\All;
use ApiOperations\Create;
use ApiOperations\Retrieve;
use ApiOperations\Update;
}