Added selectable num of records on each listing page, fixed up Pagination Records UI, added new stripe library, further worked on stripe integration, fixed mispelling in client details
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Stripe;
|
||||
|
||||
/**
|
||||
* Class OrderItem.
|
||||
*
|
||||
* @property string $object
|
||||
* @property int $amount
|
||||
* @property string $currency
|
||||
* @property string $description
|
||||
* @property string $parent
|
||||
* @property int $quantity
|
||||
* @property string $type
|
||||
*/
|
||||
class OrderItem extends StripeObject
|
||||
{
|
||||
const OBJECT_NAME = 'order_item';
|
||||
}
|
||||
Reference in New Issue
Block a user