HEX
Server: Apache
System: Linux webm004.cluster129.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: windevelwb (110072)
PHP: 8.5.0
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/windevelwb/www/stripe/lib/RelatedObject.php
<?php

namespace Stripe;

/**
 * @property string $id Unique identifier for the event.
 * @property string $type the "object" of the related object.
 * @property string $url a relative url to retrieve the related object.
 */
class RelatedObject
{
    public $id;
    public $type;
    public $url;

    public function __construct($json)
    {
        $this->id = $json['id'];
        $this->type = $json['type'];
        $this->url = $json['url'];
    }
}