Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Stripe/lib/Service/ExchangeRateService.php
Строк: 46
<?php

namespace StripeService;

class 
ExchangeRateService extends StripeServiceAbstractService
{
    
/**
     * Returns a list of objects that contain the rates at which foreign currencies are
     * converted to one another. Only shows the currencies for which Stripe supports.
     *
     * @param null|array $params
     * @param null|array|StripeUtilRequestOptions $opts
     *
     * @throws StripeExceptionApiErrorException if the request fails
     *
     * @return StripeCollection
     */
    
public function all($params null$opts null)
    {
        return 
$this->requestCollection('get''/v1/exchange_rates'$params$opts);
    }

    
/**
     * Retrieves the exchange rates from the given currency to every supported
     * currency.
     *
     * @param string $id
     * @param null|array $params
     * @param null|array|StripeUtilRequestOptions $opts
     *
     * @throws StripeExceptionApiErrorException if the request fails
     *
     * @return StripeExchangeRate
     */
    
public function retrieve($id$params null$opts null)
    {
        return 
$this->request('get'$this->buildPath('/v1/exchange_rates/%s'$id), $params$opts);
    }
}
Онлайн: 2
Реклама