21 lines
632 B
PHP
21 lines
632 B
PHP
<?php
|
|||
|
|
|
||
|
|
namespace Modules\Core\Payment\DTOs;
|
||
|
|
|
||
|
|
use Modules\Core\Payment\Enums\PaymentContinuationType;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* What a caller does next with a Pending PaymentResult, gateway-agnostic —
|
||
|
|
* see PaymentContinuationType for the two shapes. Deliberately minimal:
|
||
|
|
* this is NOT a return to the deleted PaymentInitiation DTO (which also
|
||
|
|
* carried mode/reference/meta) — reference already lives on PaymentResult
|
||
|
|
* itself, and mode is now this DTO's own $type.
|
||
|
|
*/
|
||
|
|
final class PaymentContinuation
|
||
|
|
{
|
||
|
|
public function __construct(
|
||
|
|
public readonly PaymentContinuationType $type,
|
||
|
|
public readonly string $value,
|
||
|
|
) {}
|
||
|
|
}
|