| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- // File generated from our OpenAPI spec
- namespace Stripe\Service\TestHelpers\Treasury;
- /**
- * @phpstan-import-type RequestOptionsArray from \Stripe\Util\RequestOptions
- * @psalm-import-type RequestOptionsArray from \Stripe\Util\RequestOptions
- */
- class OutboundPaymentService extends \Stripe\Service\AbstractService
- {
- /**
- * Transitions a test mode created OutboundPayment to the <code>failed</code>
- * status. The OutboundPayment must already be in the <code>processing</code>
- * state.
- *
- * @param string $id
- * @param null|array $params
- * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
- *
- * @throws \Stripe\Exception\ApiErrorException if the request fails
- *
- * @return \Stripe\Treasury\OutboundPayment
- */
- public function fail($id, $params = null, $opts = null)
- {
- return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_payments/%s/fail', $id), $params, $opts);
- }
- /**
- * Transitions a test mode created OutboundPayment to the <code>posted</code>
- * status. The OutboundPayment must already be in the <code>processing</code>
- * state.
- *
- * @param string $id
- * @param null|array $params
- * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
- *
- * @throws \Stripe\Exception\ApiErrorException if the request fails
- *
- * @return \Stripe\Treasury\OutboundPayment
- */
- public function post($id, $params = null, $opts = null)
- {
- return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_payments/%s/post', $id), $params, $opts);
- }
- /**
- * Transitions a test mode created OutboundPayment to the <code>returned</code>
- * status. The OutboundPayment must already be in the <code>processing</code>
- * state.
- *
- * @param string $id
- * @param null|array $params
- * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
- *
- * @throws \Stripe\Exception\ApiErrorException if the request fails
- *
- * @return \Stripe\Treasury\OutboundPayment
- */
- public function returnOutboundPayment($id, $params = null, $opts = null)
- {
- return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_payments/%s/return', $id), $params, $opts);
- }
- /**
- * Updates a test mode created OutboundPayment with tracking details. The
- * OutboundPayment must not be cancelable, and cannot be in the
- * <code>canceled</code> or <code>failed</code> states.
- *
- * @param string $id
- * @param null|array $params
- * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
- *
- * @throws \Stripe\Exception\ApiErrorException if the request fails
- *
- * @return \Stripe\Treasury\OutboundPayment
- */
- public function update($id, $params = null, $opts = null)
- {
- return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_payments/%s', $id), $params, $opts);
- }
- }
|