You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
505 B
32 lines
505 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace Yansongda\Pay\Events;
|
||
|
|
||
|
class ApiRequesting extends Event
|
||
|
{
|
||
|
/**
|
||
|
* Endpoint.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
public $endpoint;
|
||
|
|
||
|
/**
|
||
|
* Payload.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
public $payload;
|
||
|
|
||
|
/**
|
||
|
* Bootstrap.
|
||
|
*/
|
||
|
public function __construct(string $driver, string $gateway, string $endpoint, array $payload)
|
||
|
{
|
||
|
$this->endpoint = $endpoint;
|
||
|
$this->payload = $payload;
|
||
|
|
||
|
parent::__construct($driver, $gateway);
|
||
|
}
|
||
|
}
|