You are here

StripeEvents.php in Stripe 8

Same filename and directory in other branches
  1. 2.x src/Event/StripeEvents.php

File

src/Event/StripeEvents.php
View source
<?php

namespace Drupal\stripe\Event;


/**
 * Defines events for stripe webhooks.
 * */
final class StripeEvents {

  /**
   * The name of the event fired when a webhook is received.
   *
   * @Event
   */
  const WEBHOOK = 'stripe.webhook';

}

Classes

Namesort descending Description
StripeEvents Defines events for stripe webhooks.