9 lines
252 B
PHP
9 lines
252 B
PHP
<?php
|
|
|
|
namespace App\Serp\Data;
|
|
|
|
final readonly class SerpSubmission
|
|
{
|
|
public function __construct(public string $providerKey, public string $taskId, public ?float $cost = null, public string $currency = 'USD', public ?int $statusCode = null) {}
|
|
}
|