modern-events-calendar-lite/app/api/Stripe/OrderItem.php

20 lines
352 B
PHP
Raw Normal View History

2024-10-15 12:04:03 +02:00
<?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';
}