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

namespace StripeServiceRadar;

class 
EarlyFraudWarningService extends StripeServiceAbstractService
{
    
/**
     * Returns a list of early fraud warnings.
     *
     * @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/radar/early_fraud_warnings'$params$opts);
    }

    
/**
     * Retrieves the details of an early fraud warning that has previously been
     * created.
     *
     * Please refer to the <a href="#early_fraud_warning_object">early fraud
     * warning</a> object reference for more details.
     *
     * @param string $id
     * @param null|array $params
     * @param null|array|StripeUtilRequestOptions $opts
     *
     * @throws StripeExceptionApiErrorException if the request fails
     *
     * @return StripeRadarEarlyFraudWarning
     */
    
public function retrieve($id$params null$opts null)
    {
        return 
$this->request('get'$this->buildPath('/v1/radar/early_fraud_warnings/%s'$id), $params$opts);
    }
}
Онлайн: 4
Реклама