Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92412873
Coupon.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Nov 20, 02:35
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Nov 22, 02:35 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22437464
Attached To
rPH Phabricator
Coupon.php
View Options
<?php
class
Stripe_Coupon
extends
Stripe_ApiResource
{
/**
* @param string $id The ID of the coupon to retrieve.
* @param string|null $apiKey
*
* @return Stripe_Coupon
*/
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 coupon.
*/
public
static
function
create
(
$params
=
null
,
$apiKey
=
null
)
{
$class
=
get_class
();
return
self
::
_scopedCreate
(
$class
,
$params
,
$apiKey
);
}
/**
* @param array|null $params
*
* @return Stripe_Coupon The deleted coupon.
*/
public
function
delete
(
$params
=
null
)
{
$class
=
get_class
();
return
self
::
_scopedDelete
(
$class
,
$params
);
}
/**
* @param array|null $params
* @param string|null $apiKey
*
* @return array An array of Stripe_Coupons.
*/
public
static
function
all
(
$params
=
null
,
$apiKey
=
null
)
{
$class
=
get_class
();
return
self
::
_scopedAll
(
$class
,
$params
,
$apiKey
);
}
}
Event Timeline
Log In to Comment