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

namespace Stripe;

/**
 * <code>Source</code> objects allow you to accept a variety of payment methods.
 * They represent a customer's payment instrument, and can be used with the Stripe
 * API just like a <code>Card</code> object: once chargeable, they can be charged,
 * or can be attached to customers.
 *
 * Related guides: <a href="https://stripe.com/docs/sources">Sources API</a> and <a
 * href="https://stripe.com/docs/sources/customers">Sources &amp; Customers</a>.
 *
 * @property string $id Unique identifier for the object.
 * @property string $object String representing the object's type. Objects of the same type share the same value.
 * @property StripeStripeObject $ach_credit_transfer
 * @property StripeStripeObject $ach_debit
 * @property StripeStripeObject $acss_debit
 * @property StripeStripeObject $alipay
 * @property null|int $amount A positive integer in the smallest currency unit (that is, 100 cents for $1.00, or 1 for ¥1, Japanese Yen being a zero-decimal currency) representing the total amount associated with the source. This is the amount for which the source will be chargeable once ready. Required for <code>single_use</code> sources.
 * @property StripeStripeObject $au_becs_debit
 * @property StripeStripeObject $bancontact
 * @property StripeStripeObject $card
 * @property StripeStripeObject $card_present
 * @property string $client_secret The client secret of the source. Used for client-side retrieval using a publishable key.
 * @property StripeStripeObject $code_verification
 * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
 * @property null|string $currency Three-letter <a href="https://stripe.com/docs/currencies">ISO code for the currency</a> associated with the source. This is the currency for which the source will be chargeable once ready. Required for <code>single_use</code> sources.
 * @property string $customer The ID of the customer to which this source is attached. This will not be present when the source has not been attached to a customer.
 * @property StripeStripeObject $eps
 * @property string $flow The authentication <code>flow</code> of the source. <code>flow</code> is one of <code>redirect</code>, <code>receiver</code>, <code>code_verification</code>, <code>none</code>.
 * @property StripeStripeObject $giropay
 * @property StripeStripeObject $ideal
 * @property StripeStripeObject $klarna
 * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
 * @property null|StripeStripeObject $metadata Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
 * @property StripeStripeObject $multibanco
 * @property null|StripeStripeObject $owner Information about the owner of the payment instrument that may be used or required by particular source types.
 * @property StripeStripeObject $p24
 * @property StripeStripeObject $receiver
 * @property StripeStripeObject $redirect
 * @property StripeStripeObject $sepa_credit_transfer
 * @property StripeStripeObject $sepa_debit
 * @property StripeStripeObject $sofort
 * @property StripeStripeObject $source_order
 * @property null|string $statement_descriptor Extra information about a source. This will appear on your customer's statement every time you charge the source.
 * @property string $status The status of the source, one of <code>canceled</code>, <code>chargeable</code>, <code>consumed</code>, <code>failed</code>, or <code>pending</code>. Only <code>chargeable</code> sources can be used to create a charge.
 * @property StripeStripeObject $three_d_secure
 * @property string $type The <code>type</code> of the source. The <code>type</code> is a payment method, one of <code>ach_credit_transfer</code>, <code>ach_debit</code>, <code>alipay</code>, <code>bancontact</code>, <code>card</code>, <code>card_present</code>, <code>eps</code>, <code>giropay</code>, <code>ideal</code>, <code>multibanco</code>, <code>klarna</code>, <code>p24</code>, <code>sepa_debit</code>, <code>sofort</code>, <code>three_d_secure</code>, or <code>wechat</code>. An additional hash is included on the source with a name matching this value. It contains additional information specific to the <a href="https://stripe.com/docs/sources">payment method</a> used.
 * @property null|string $usage Either <code>reusable</code> or <code>single_use</code>. Whether this source should be reusable or not. Some source types may or may not be reusable by construction, while others may leave the option at creation. If an incompatible value is passed, an error will be returned.
 * @property StripeStripeObject $wechat
 */
class Source extends ApiResource
{
    const 
OBJECT_NAME 'source';

    use 
ApiOperationsCreate;
    use 
ApiOperationsRetrieve;
    use 
ApiOperationsUpdate;

    const 
FLOW_CODE_VERIFICATION 'code_verification';
    const 
FLOW_NONE 'none';
    const 
FLOW_RECEIVER 'receiver';
    const 
FLOW_REDIRECT 'redirect';

    const 
STATUS_CANCELED 'canceled';
    const 
STATUS_CHARGEABLE 'chargeable';
    const 
STATUS_CONSUMED 'consumed';
    const 
STATUS_FAILED 'failed';
    const 
STATUS_PENDING 'pending';

    const 
USAGE_REUSABLE 'reusable';
    const 
USAGE_SINGLE_USE 'single_use';

    use 
ApiOperationsNestedResource;

    
/**
     * @param null|array $params
     * @param null|array|string $opts
     *
     * @throws StripeExceptionUnexpectedValueException if the source is not attached to a customer
     * @throws StripeExceptionApiErrorException if the request fails
     *
     * @return StripeSource the detached source
     */
    
public function detach($params null$opts null)
    {
        
self::_validateParams($params);

        
$id $this['id'];
        if (!
$id) {
            
$class get_class($this);
            
$msg "Could not determine which URL to request: {$class} instance "
             
"has invalid ID: {$id}";

            throw new 
ExceptionUnexpectedValueException($msgnull);
        }

        if (
$this['customer']) {
            
$base Customer::classUrl();
            
$parentExtn urlencode(UtilUtil::utf8($this['customer']));
            
$extn urlencode(UtilUtil::utf8($id));
            
$url "{$base}/{$parentExtn}/sources/{$extn}";

            list(
$response$opts) = $this->_request('delete'$url$params$opts);
            
$this->refreshFrom($response$opts);

            return 
$this;
        }
        
$message 'This source object does not appear to be currently attached '
               
'to a customer object.';

        throw new 
ExceptionUnexpectedValueException($message);
    }

    
/**
     * @deprecated sourceTransactions is deprecated. Please use Source::allSourceTransactions instead.
     *
     * @param null|array $params
     * @param null|array|string $opts
     *
     * @throws StripeExceptionApiErrorException if the request fails
     *
     * @return StripeCollection the list of source transactions
     */
    
public function sourceTransactions($params null$opts null)
    {
        
$url $this->instanceUrl() . '/source_transactions';
        list(
$response$opts) = $this->_request('get'$url$params$opts);
        
$obj StripeUtilUtil::convertToStripeObject($response$opts);
        
$obj->setLastResponse($response);

        return 
$obj;
    }

    
/**
     * @param string $id
     * @param null|array $params
     * @param null|array|string $opts
     *
     * @throws StripeExceptionApiErrorException if the request fails
     *
     * @return StripeCollection the list of source transactions
     */
    
public static function allSourceTransactions($id$params null$opts null)
    {
        return 
self::_allNestedResources($id'/source_transactions'$params$opts);
    }

    
/**
     * @param null|array $params
     * @param null|array|string $opts
     *
     * @throws StripeExceptionApiErrorException if the request fails
     *
     * @return Source the verified source
     */
    
public function verify($params null$opts null)
    {
        
$url $this->instanceUrl() . '/verify';
        list(
$response$opts) = $this->_request('post'$url$params$opts);
        
$this->refreshFrom($response$opts);

        return 
$this;
    }
}
Онлайн: 6
Реклама