Файл: vendor/stripe/stripe-php/lib/Service/CountrySpecService.php
Строк: 41
<?php
// File generated from our OpenAPI spec
namespace StripeService;
class CountrySpecService extends StripeServiceAbstractService
{
/**
* Lists all Country Spec objects available in the API.
*
* @param null|array $params
* @param null|array|StripeUtilRequestOptions $opts
*
* @throws StripeExceptionApiErrorException if the request fails
*
* @return StripeCollection<StripeCountrySpec>
*/
public function all($params = null, $opts = null)
{
return $this->requestCollection('get', '/v1/country_specs', $params, $opts);
}
/**
* Returns a Country Spec for a given Country code.
*
* @param string $id
* @param null|array $params
* @param null|array|StripeUtilRequestOptions $opts
*
* @throws StripeExceptionApiErrorException if the request fails
*
* @return StripeCountrySpec
*/
public function retrieve($id, $params = null, $opts = null)
{
return $this->request('get', $this->buildPath('/v1/country_specs/%s', $id), $params, $opts);
}
}