| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- // File generated from our OpenAPI spec
- namespace Stripe\Service\Tax;
- /**
- * @phpstan-import-type RequestOptionsArray from \Stripe\Util\RequestOptions
- * @psalm-import-type RequestOptionsArray from \Stripe\Util\RequestOptions
- */
- class CalculationService extends \Stripe\Service\AbstractService
- {
- /**
- * Retrieves the line items of a tax calculation as a collection, if the
- * calculation hasn’t expired.
- *
- * @param string $id
- * @param null|array $params
- * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
- *
- * @throws \Stripe\Exception\ApiErrorException if the request fails
- *
- * @return \Stripe\Collection<\Stripe\Tax\CalculationLineItem>
- */
- public function allLineItems($id, $params = null, $opts = null)
- {
- return $this->requestCollection('get', $this->buildPath('/v1/tax/calculations/%s/line_items', $id), $params, $opts);
- }
- /**
- * Calculates tax based on the input and returns a Tax <code>Calculation</code>
- * object.
- *
- * @param null|array $params
- * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
- *
- * @throws \Stripe\Exception\ApiErrorException if the request fails
- *
- * @return \Stripe\Tax\Calculation
- */
- public function create($params = null, $opts = null)
- {
- return $this->request('post', '/v1/tax/calculations', $params, $opts);
- }
- }
|