You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
333 B
19 lines
333 B
<?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';
|
|
}
|
|
|