summaryrefslogtreecommitdiffstats
path: root/vendor/stripe/stripe-php/lib/OrderItem.php
blob: e2e6e39a2875617123abf221be7038dc2eafd214 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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';
}