forked from stripe/stripe-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInvoiceItem.php
78 lines (71 loc) · 1.74 KB
/
InvoiceItem.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
namespace Stripe;
/**
* Class InvoiceItem
*
* @package Stripe
*/
class InvoiceItem extends ApiResource
{
/**
* @param array|string $id The ID of the invoice item to retrieve, or an
* options array containing an `id` key.
* @param array|string|null $opts
*
* @return InvoiceItem
*/
public static function retrieve($id, $opts = null)
{
return self::_retrieve($id, $opts);
}
/**
* @param array|null $params
* @param array|string|null $opts
*
* @return Collection of InvoiceItems
*/
public static function all($params = null, $opts = null)
{
return self::_all($params, $opts);
}
/**
* @param array|null $params
* @param array|string|null $opts
*
* @return InvoiceItem The created invoice item.
*/
public static function create($params = null, $opts = null)
{
return self::_create($params, $opts);
}
/**
* @param string $id The ID of the invoice item to update.
* @param array|null $params
* @param array|string|null $options
*
* @return InvoiceItem The updated invoice item.
*/
public static function update($id, $params = null, $options = null)
{
return self::_update($id, $params, $options);
}
/**
* @param array|string|null $opts
*
* @return InvoiceItem The saved invoice item.
*/
public function save($opts = null)
{
return $this->_save($opts);
}
/**
* @param array|null $params
* @param array|string|null $opts
*
* @return InvoiceItem The deleted invoice item.
*/
public function delete($params = null, $opts = null)
{
return $this->_delete($params, $opts);
}
}