Files
Chamilo/vendor/stripe/stripe-php/lib/RelatedObject.php
2025-04-10 12:24:57 +02:00

16 lines
217 B
PHP

<?php
namespace Stripe;
/**
* @property string $id Unique identifier for the event.
* @property string $type
* @property string $url
*/
class RelatedObject
{
public $id;
public $type;
public $url;
}