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