Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97259513
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
Fri, Jan 3, 20:52
Size
827 B
Mime Type
text/x-php
Expires
Sun, Jan 5, 20:52 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23367441
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