Page MenuHomestyx hydra

Token.php
No OneTemporary

Token.php

<?php
class Stripe_Token extends Stripe_ApiResource
{
/**
* @param string $id The ID of the token to retrieve.
* @param string|null $apiKey
*
* @return Stripe_Token
*/
public static function retrieve($id, $apiKey=null)
{
$class = get_class();
return self::_scopedRetrieve($class, $id, $apiKey);
}
/**
* @param array|null $params
* @param string|null $apiKey
*
* @return Stripe_Coupon The created token.
*/
public static function create($params=null, $apiKey=null)
{
$class = get_class();
return self::_scopedCreate($class, $params, $apiKey);
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Feb 4, 12:28 PM (1 h, 24 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
660772
Default Alt Text
Token.php (610 B)

Event Timeline