mirror of
https://github.com/itflow-org/itflow
synced 2026-03-21 13:05:39 +00:00
Updated Client Detail Header for better mobile fit, lots of progress on stripe pay and some other minor updates
This commit is contained in:
30
vendor/stripe-php-7.0.2/lib/TaxRate.php
vendored
Normal file
30
vendor/stripe-php-7.0.2/lib/TaxRate.php
vendored
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user