Initial Commit
This commit is contained in:
47
dependencies/stripe/stripe-php/lib/Tax/Calculation.php
vendored
Normal file
47
dependencies/stripe/stripe-php/lib/Tax/Calculation.php
vendored
Normal file
@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
// File generated from our OpenAPI spec
|
||||
namespace WP_Ultimo\Dependencies\Stripe\Tax;
|
||||
|
||||
/**
|
||||
* A Tax Calculation allows you to calculate the tax to collect from your customer.
|
||||
*
|
||||
* Related guide: <a href="https://stripe.com/docs/tax/custom">Calculate tax in your custom payment flow</a>
|
||||
*
|
||||
* @property null|string $id Unique identifier for the calculation.
|
||||
* @property string $object String representing the object's type. Objects of the same type share the same value.
|
||||
* @property int $amount_total Total after taxes.
|
||||
* @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
||||
* @property null|string $customer The ID of an existing <a href="https://stripe.com/docs/api/customers/object">Customer</a> used for the resource.
|
||||
* @property \Stripe\StripeObject $customer_details
|
||||
* @property null|int $expires_at Timestamp of date at which the tax calculation will expire.
|
||||
* @property null|\Stripe\Collection<\Stripe\Tax\CalculationLineItem> $line_items The list of items the customer is purchasing.
|
||||
* @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
|
||||
* @property null|\Stripe\StripeObject $shipping_cost The shipping cost details for the calculation.
|
||||
* @property int $tax_amount_exclusive The amount of tax to be collected on top of the line item prices.
|
||||
* @property int $tax_amount_inclusive The amount of tax already included in the line item prices.
|
||||
* @property \Stripe\StripeObject[] $tax_breakdown Breakdown of individual tax amounts that add up to the total.
|
||||
* @property int $tax_date Timestamp of date at which the tax rules and rates in effect applies for the calculation.
|
||||
*/
|
||||
class Calculation extends \WP_Ultimo\Dependencies\Stripe\ApiResource
|
||||
{
|
||||
const OBJECT_NAME = 'tax.calculation';
|
||||
use \WP_Ultimo\Dependencies\Stripe\ApiOperations\Create;
|
||||
/**
|
||||
* @param string $id
|
||||
* @param null|array $params
|
||||
* @param null|array|string $opts
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*
|
||||
* @return \Stripe\Collection<\Stripe\Tax\CalculationLineItem> list of calculation line items
|
||||
*/
|
||||
public static function allLineItems($id, $params = null, $opts = null)
|
||||
{
|
||||
$url = static::resourceUrl($id) . '/line_items';
|
||||
list($response, $opts) = static::_staticRequest('get', $url, $params, $opts);
|
||||
$obj = \WP_Ultimo\Dependencies\Stripe\Util\Util::convertToStripeObject($response->json, $opts);
|
||||
$obj->setLastResponse($response);
|
||||
return $obj;
|
||||
}
|
||||
}
|
24
dependencies/stripe/stripe-php/lib/Tax/CalculationLineItem.php
vendored
Normal file
24
dependencies/stripe/stripe-php/lib/Tax/CalculationLineItem.php
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
// File generated from our OpenAPI spec
|
||||
namespace WP_Ultimo\Dependencies\Stripe\Tax;
|
||||
|
||||
/**
|
||||
* @property string $id Unique identifier for the object.
|
||||
* @property string $object String representing the object's type. Objects of the same type share the same value.
|
||||
* @property int $amount The line item amount in integer cents. If <code>tax_behavior=inclusive</code>, then this amount includes taxes. Otherwise, taxes were calculated on top of this amount.
|
||||
* @property int $amount_tax The amount of tax calculated for this line item, in integer cents.
|
||||
* @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
|
||||
* @property null|string $product The ID of an existing <a href="https://stripe.com/docs/api/products/object">Product</a>.
|
||||
* @property int $quantity The number of units of the item being purchased. For reversals, this is the quantity reversed.
|
||||
* @property null|string $reference A custom identifier for this line item.
|
||||
* @property string $tax_behavior Specifies whether the <code>amount</code> includes taxes. If <code>tax_behavior=inclusive</code>, then the amount includes taxes.
|
||||
* @property null|\Stripe\StripeObject[] $tax_breakdown Detailed account of taxes relevant to this line item.
|
||||
* @property string $tax_code The <a href="https://stripe.com/docs/tax/tax-categories">tax code</a> ID used for this resource.
|
||||
*/
|
||||
class CalculationLineItem extends \WP_Ultimo\Dependencies\Stripe\ApiResource
|
||||
{
|
||||
const OBJECT_NAME = 'tax.calculation_line_item';
|
||||
const TAX_BEHAVIOR_EXCLUSIVE = 'exclusive';
|
||||
const TAX_BEHAVIOR_INCLUSIVE = 'inclusive';
|
||||
}
|
25
dependencies/stripe/stripe-php/lib/Tax/Settings.php
vendored
Normal file
25
dependencies/stripe/stripe-php/lib/Tax/Settings.php
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
// File generated from our OpenAPI spec
|
||||
namespace WP_Ultimo\Dependencies\Stripe\Tax;
|
||||
|
||||
/**
|
||||
* You can use Tax <code>Settings</code> to manage configurations used by Stripe Tax calculations.
|
||||
*
|
||||
* Related guide: <a href="https://stripe.com/docs/tax/settings-api">Using the Settings API</a>
|
||||
*
|
||||
* @property string $object String representing the object's type. Objects of the same type share the same value.
|
||||
* @property \Stripe\StripeObject $defaults
|
||||
* @property null|\Stripe\StripeObject $head_office The place where your business is located.
|
||||
* @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
|
||||
* @property string $status The <code>active</code> status indicates you have all required settings to calculate tax. A status can transition out of <code>active</code> when new required settings are introduced.
|
||||
* @property \Stripe\StripeObject $status_details
|
||||
*/
|
||||
class Settings extends \WP_Ultimo\Dependencies\Stripe\SingletonApiResource
|
||||
{
|
||||
const OBJECT_NAME = 'tax.settings';
|
||||
use \WP_Ultimo\Dependencies\Stripe\ApiOperations\SingletonRetrieve;
|
||||
use \WP_Ultimo\Dependencies\Stripe\ApiOperations\Update;
|
||||
const STATUS_ACTIVE = 'active';
|
||||
const STATUS_PENDING = 'pending';
|
||||
}
|
81
dependencies/stripe/stripe-php/lib/Tax/Transaction.php
vendored
Normal file
81
dependencies/stripe/stripe-php/lib/Tax/Transaction.php
vendored
Normal file
@ -0,0 +1,81 @@
|
||||
<?php
|
||||
|
||||
// File generated from our OpenAPI spec
|
||||
namespace WP_Ultimo\Dependencies\Stripe\Tax;
|
||||
|
||||
/**
|
||||
* A Tax Transaction records the tax collected from or refunded to your customer.
|
||||
*
|
||||
* Related guide: <a href="https://stripe.com/docs/tax/custom#tax-transaction">Calculate tax in your custom payment flow</a>
|
||||
*
|
||||
* @property string $id Unique identifier for the transaction.
|
||||
* @property string $object String representing the object's type. Objects of the same type share the same value.
|
||||
* @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
|
||||
* @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
||||
* @property null|string $customer The ID of an existing <a href="https://stripe.com/docs/api/customers/object">Customer</a> used for the resource.
|
||||
* @property \Stripe\StripeObject $customer_details
|
||||
* @property null|\Stripe\Collection<\Stripe\Tax\TransactionLineItem> $line_items The tax collected or refunded, by line item.
|
||||
* @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
|
||||
* @property null|\Stripe\StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
|
||||
* @property string $reference A custom unique identifier, such as 'myOrder_123'.
|
||||
* @property null|\Stripe\StripeObject $reversal If <code>type=reversal</code>, contains information about what was reversed.
|
||||
* @property null|\Stripe\StripeObject $shipping_cost The shipping cost details for the transaction.
|
||||
* @property int $tax_date Timestamp of date at which the tax rules and rates in effect applies for the calculation.
|
||||
* @property string $type If <code>reversal</code>, this transaction reverses an earlier transaction.
|
||||
*/
|
||||
class Transaction extends \WP_Ultimo\Dependencies\Stripe\ApiResource
|
||||
{
|
||||
const OBJECT_NAME = 'tax.transaction';
|
||||
use \WP_Ultimo\Dependencies\Stripe\ApiOperations\Retrieve;
|
||||
const TYPE_REVERSAL = 'reversal';
|
||||
const TYPE_TRANSACTION = 'transaction';
|
||||
/**
|
||||
* @param null|array $params
|
||||
* @param null|array|string $opts
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*
|
||||
* @return \Stripe\Tax\Transaction the created transaction
|
||||
*/
|
||||
public static function createFromCalculation($params = null, $opts = null)
|
||||
{
|
||||
$url = static::classUrl() . '/create_from_calculation';
|
||||
list($response, $opts) = static::_staticRequest('post', $url, $params, $opts);
|
||||
$obj = \WP_Ultimo\Dependencies\Stripe\Util\Util::convertToStripeObject($response->json, $opts);
|
||||
$obj->setLastResponse($response);
|
||||
return $obj;
|
||||
}
|
||||
/**
|
||||
* @param null|array $params
|
||||
* @param null|array|string $opts
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*
|
||||
* @return \Stripe\Tax\Transaction the created transaction
|
||||
*/
|
||||
public static function createReversal($params = null, $opts = null)
|
||||
{
|
||||
$url = static::classUrl() . '/create_reversal';
|
||||
list($response, $opts) = static::_staticRequest('post', $url, $params, $opts);
|
||||
$obj = \WP_Ultimo\Dependencies\Stripe\Util\Util::convertToStripeObject($response->json, $opts);
|
||||
$obj->setLastResponse($response);
|
||||
return $obj;
|
||||
}
|
||||
/**
|
||||
* @param string $id
|
||||
* @param null|array $params
|
||||
* @param null|array|string $opts
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*
|
||||
* @return \Stripe\Collection<\Stripe\Tax\TransactionLineItem> list of transaction line items
|
||||
*/
|
||||
public static function allLineItems($id, $params = null, $opts = null)
|
||||
{
|
||||
$url = static::resourceUrl($id) . '/line_items';
|
||||
list($response, $opts) = static::_staticRequest('get', $url, $params, $opts);
|
||||
$obj = \WP_Ultimo\Dependencies\Stripe\Util\Util::convertToStripeObject($response->json, $opts);
|
||||
$obj->setLastResponse($response);
|
||||
return $obj;
|
||||
}
|
||||
}
|
28
dependencies/stripe/stripe-php/lib/Tax/TransactionLineItem.php
vendored
Normal file
28
dependencies/stripe/stripe-php/lib/Tax/TransactionLineItem.php
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
// File generated from our OpenAPI spec
|
||||
namespace WP_Ultimo\Dependencies\Stripe\Tax;
|
||||
|
||||
/**
|
||||
* @property string $id Unique identifier for the object.
|
||||
* @property string $object String representing the object's type. Objects of the same type share the same value.
|
||||
* @property int $amount The line item amount in integer cents. If <code>tax_behavior=inclusive</code>, then this amount includes taxes. Otherwise, taxes were calculated on top of this amount.
|
||||
* @property int $amount_tax The amount of tax calculated for this line item, in integer cents.
|
||||
* @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
|
||||
* @property null|\Stripe\StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
|
||||
* @property null|string $product The ID of an existing <a href="https://stripe.com/docs/api/products/object">Product</a>.
|
||||
* @property int $quantity The number of units of the item being purchased. For reversals, this is the quantity reversed.
|
||||
* @property string $reference A custom identifier for this line item in the transaction.
|
||||
* @property null|\Stripe\StripeObject $reversal If <code>type=reversal</code>, contains information about what was reversed.
|
||||
* @property string $tax_behavior Specifies whether the <code>amount</code> includes taxes. If <code>tax_behavior=inclusive</code>, then the amount includes taxes.
|
||||
* @property string $tax_code The <a href="https://stripe.com/docs/tax/tax-categories">tax code</a> ID used for this resource.
|
||||
* @property string $type If <code>reversal</code>, this line item reverses an earlier transaction.
|
||||
*/
|
||||
class TransactionLineItem extends \WP_Ultimo\Dependencies\Stripe\ApiResource
|
||||
{
|
||||
const OBJECT_NAME = 'tax.transaction_line_item';
|
||||
const TAX_BEHAVIOR_EXCLUSIVE = 'exclusive';
|
||||
const TAX_BEHAVIOR_INCLUSIVE = 'inclusive';
|
||||
const TYPE_REVERSAL = 'reversal';
|
||||
const TYPE_TRANSACTION = 'transaction';
|
||||
}
|
Reference in New Issue
Block a user