failed * status. The OutboundTransfer must already be in the processing * state. * * @param string $id * @param null|array{expand?: string[]} $params * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts * * @return \Stripe\Treasury\OutboundTransfer * * @throws \Stripe\Exception\ApiErrorException if the request fails */ public function fail($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_transfers/%s/fail', $id), $params, $opts); } /** * Transitions a test mode created OutboundTransfer to the posted * status. The OutboundTransfer must already be in the processing * state. * * @param string $id * @param null|array{expand?: string[]} $params * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts * * @return \Stripe\Treasury\OutboundTransfer * * @throws \Stripe\Exception\ApiErrorException if the request fails */ public function post($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_transfers/%s/post', $id), $params, $opts); } /** * Transitions a test mode created OutboundTransfer to the returned * status. The OutboundTransfer must already be in the processing * state. * * @param string $id * @param null|array{expand?: string[], returned_details?: array{code?: string}} $params * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts * * @return \Stripe\Treasury\OutboundTransfer * * @throws \Stripe\Exception\ApiErrorException if the request fails */ public function returnOutboundTransfer($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_transfers/%s/return', $id), $params, $opts); } /** * Updates a test mode created OutboundTransfer with tracking details. The * OutboundTransfer must not be cancelable, and cannot be in the * canceled or failed states. * * @param string $id * @param null|array{expand?: string[], tracking_details: array{ach?: array{trace_id: string}, type: string, us_domestic_wire?: array{chips?: string, imad?: string, omad?: string}}} $params * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts * * @return \Stripe\Treasury\OutboundTransfer * * @throws \Stripe\Exception\ApiErrorException if the request fails */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/test_helpers/treasury/outbound_transfers/%s', $id), $params, $opts); } }