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

namespace StripeService;

class 
FileService extends StripeServiceAbstractService
{
    
/**
     * Returns a list of the files that your account has access to. The files are
     * returned sorted by creation date, with the most recently created files appearing
     * first.
     *
     * @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/files'$params$opts);
    }

    
/**
     * Retrieves the details of an existing file object. Supply the unique file ID from
     * a file, and Stripe will return the corresponding file object. To access file
     * contents, see the <a href="/docs/file-upload#download-file-contents">File Upload
     * Guide</a>.
     *
     * @param string $id
     * @param null|array $params
     * @param null|array|StripeUtilRequestOptions $opts
     *
     * @throws StripeExceptionApiErrorException if the request fails
     *
     * @return StripeFile
     */
    
public function retrieve($id$params null$opts null)
    {
        return 
$this->request('get'$this->buildPath('/v1/files/%s'$id), $params$opts);
    }

    
/**
     * Create a file.
     *
     * @param null|array $params
     * @param null|array|StripeUtilRequestOptions $opts
     *
     * @return StripeFile
     */
    
public function create($params null$opts null)
    {
        
$opts StripeUtilRequestOptions::parse($opts);
        if (!isset(
$opts->apiBase)) {
            
$opts->apiBase $this->getClient()->getFilesBase();
        }

        
// Manually flatten params, otherwise curl's multipart encoder will
        // choke on nested null|arrays.
        
$flatParams array_column(StripeUtilUtil::flattenParams($params), 10);

        return 
$this->request('post''/v1/files'$flatParams$opts);
    }
}
Онлайн: 2
Реклама