Файл: vendor/stripe/stripe-php/lib/Service/SetupAttemptService.php
Строк: 21
<?php
// File generated from our OpenAPI spec
namespace StripeService;
class SetupAttemptService extends StripeServiceAbstractService
{
/**
* Returns a list of SetupAttempts associated with a provided SetupIntent.
*
* @param null|array $params
* @param null|array|StripeUtilRequestOptions $opts
*
* @throws StripeExceptionApiErrorException if the request fails
*
* @return StripeCollection<StripeSetupAttempt>
*/
public function all($params = null, $opts = null)
{
return $this->requestCollection('get', '/v1/setup_attempts', $params, $opts);
}
}