V1BillingMeterErrorReportTriggeredEvent.php
7 months ago
V1BillingMeterNoMeterFoundEvent.php
7 months ago
V2CoreEventDestinationPingEvent.php
7 months ago
V1BillingMeterNoMeterFoundEvent.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | |
| 5 | namespace AmeliaVendor\Stripe\Events; |
| 6 | |
| 7 | /** |
| 8 | * @property \AmeliaVendor\Stripe\EventData\V1BillingMeterNoMeterFoundEventData $data data associated with the event |
| 9 | */ |
| 10 | class V1BillingMeterNoMeterFoundEvent extends \AmeliaVendor\Stripe\V2\Event |
| 11 | { |
| 12 | const LOOKUP_TYPE = 'v1.billing.meter.no_meter_found'; |
| 13 | |
| 14 | public static function constructFrom($values, $opts = null, $apiMode = 'v2') |
| 15 | { |
| 16 | $evt = parent::constructFrom($values, $opts, $apiMode); |
| 17 | if (null !== $evt->data) { |
| 18 | $evt->data = \AmeliaVendor\Stripe\EventData\V1BillingMeterNoMeterFoundEventData::constructFrom($evt->data, $opts, $apiMode); |
| 19 | } |
| 20 | |
| 21 | return $evt; |
| 22 | } |
| 23 | } |
| 24 |