14 lines
190 B
PHP
14 lines
190 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* @property string $id Unique identifier for the event.
|
|
* @property string $idempotency_key
|
|
*/
|
|
class Reason
|
|
{
|
|
public $id;
|
|
public $idempotency_key;
|
|
}
|