Файловый менеджер - Редактировать - /home/lakoyani/lakoyani.com.fj/Tax.tar
Назад
TransactionLineItem.php 0000777 00000004060 14711035152 0011177 0 ustar 00 <?php // File generated from our OpenAPI spec namespace 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 \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'; } CalculationLineItem.php 0000777 00000003137 14711035152 0011154 0 ustar 00 <?php // File generated from our OpenAPI spec namespace 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 \Stripe\ApiResource { const OBJECT_NAME = 'tax.calculation_line_item'; const TAX_BEHAVIOR_EXCLUSIVE = 'exclusive'; const TAX_BEHAVIOR_INCLUSIVE = 'inclusive'; } Calculation.php 0000777 00000005132 14711035153 0007523 0 ustar 00 <?php // File generated from our OpenAPI spec namespace 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 \Stripe\ApiResource { const OBJECT_NAME = 'tax.calculation'; use \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 = \Stripe\Util\Util::convertToStripeObject($response->json, $opts); $obj->setLastResponse($response); return $obj; } } Transaction.php 0000777 00000010127 14711035153 0007552 0 ustar 00 <?php // File generated from our OpenAPI spec namespace 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 \Stripe\ApiResource { const OBJECT_NAME = 'tax.transaction'; use \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 = \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 = \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 = \Stripe\Util\Util::convertToStripeObject($response->json, $opts); $obj->setLastResponse($response); return $obj; } } Settings.php 0000777 00000002276 14711035153 0007073 0 ustar 00 <?php // File generated from our OpenAPI spec namespace 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 \Stripe\SingletonApiResource { const OBJECT_NAME = 'tax.settings'; use \Stripe\ApiOperations\SingletonRetrieve; use \Stripe\ApiOperations\Update; const STATUS_ACTIVE = 'active'; const STATUS_PENDING = 'pending'; }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка