Files
php_assessment_2/wp-content/plugins/custom-enhancements/stripe-php/lib/RelatedObject.php
T

16 lines
217 B
PHP
Raw Normal View History

2025-08-11 05:58:17 +01:00
<?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;
}