Teren-app/app/Services/Sms/SmsResult.php
Simon Pocrnjič 930ac83604 SMS service
2025-10-24 21:39:10 +02:00

15 lines
304 B
PHP

<?php
namespace App\Services\Sms;
class SmsResult
{
public function __construct(
public string $status, // sent|failed
public ?string $providerMessageId = null,
public ?float $cost = null,
public ?string $currency = null,
public array $meta = [],
) {}
}