mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 03:14:52 +00:00
Updated Client Detail Header for better mobile fit, lots of progress on stripe pay and some other minor updates
This commit is contained in:
28
vendor/stripe-php-7.0.2/lib/WebhookEndpoint.php
vendored
Normal file
28
vendor/stripe-php-7.0.2/lib/WebhookEndpoint.php
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace Stripe;
|
||||
|
||||
/**
|
||||
* Class WebhookEndpoint
|
||||
*
|
||||
* @property string $id
|
||||
* @property string $object
|
||||
* @property int $created
|
||||
* @property string[] $enabled_events
|
||||
* @property bool $livemode
|
||||
* @property string $secret
|
||||
* @property string $status
|
||||
* @property string $url
|
||||
*
|
||||
* @package Stripe
|
||||
*/
|
||||
class WebhookEndpoint extends ApiResource
|
||||
{
|
||||
const OBJECT_NAME = "webhook_endpoint";
|
||||
|
||||
use ApiOperations\All;
|
||||
use ApiOperations\Create;
|
||||
use ApiOperations\Delete;
|
||||
use ApiOperations\Retrieve;
|
||||
use ApiOperations\Update;
|
||||
}
|
||||
Reference in New Issue
Block a user