Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117026956
Invoice.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
Tue, Jun 10, 22:47
Size
827 B
Mime Type
text/x-php
Expires
Thu, Jun 12, 22:47 (2 d)
Engine
blob
Format
Raw Data
Handle
26705640
Attached To
rPH Phabricator
Invoice.php
View Options
<?php
class
Stripe_Invoice
extends
Stripe_ApiResource
{
public
static
function
constructFrom
(
$values
,
$apiKey
=
null
)
{
$class
=
get_class
();
return
self
::
scopedConstructFrom
(
$class
,
$values
,
$apiKey
);
}
public
static
function
retrieve
(
$id
,
$apiKey
=
null
)
{
$class
=
get_class
();
return
self
::
_scopedRetrieve
(
$class
,
$id
,
$apiKey
);
}
public
static
function
all
(
$params
=
null
,
$apiKey
=
null
)
{
$class
=
get_class
();
return
self
::
_scopedAll
(
$class
,
$params
,
$apiKey
);
}
public
static
function
upcoming
(
$params
=
null
,
$apiKey
=
null
)
{
$requestor
=
new
Stripe_ApiRequestor
(
$apiKey
);
$url
=
self
::
classUrl
(
get_class
())
.
'/upcoming'
;
list
(
$response
,
$apiKey
)
=
$requestor
->
request
(
'get'
,
$url
,
$params
);
return
Stripe_Util
::
convertToStripeObject
(
$response
,
$apiKey
);
}
}
Event Timeline
Log In to Comment