give
/
vendor
/
vendor-prefixed
/
stellarwp
/
licensing-api-client
/
src
/
Responses
/
Contracts
/
Response.php
give
/
vendor
/
vendor-prefixed
/
stellarwp
/
licensing-api-client
/
src
/
Responses
/
Contracts
Last commit date
Response.php
3 months ago
Response.php
28 lines
| 1 | <?php declare(strict_types=1); |
| 2 | |
| 3 | namespace Give\Vendors\LiquidWeb\LicensingApiClient\Responses\Contracts; |
| 4 | |
| 5 | /** |
| 6 | * Response/value objects implement this interface to provide structured API data. |
| 7 | * |
| 8 | * @template TArray of array |
| 9 | */ |
| 10 | interface Response |
| 11 | { |
| 12 | /** |
| 13 | * Map raw attributes to the response object. |
| 14 | * |
| 15 | * @param array<string, mixed> $attributes |
| 16 | * |
| 17 | * @return static |
| 18 | */ |
| 19 | public static function from(array $attributes): self; |
| 20 | |
| 21 | /** |
| 22 | * Return the array representation of the response object. |
| 23 | * |
| 24 | * @return TArray |
| 25 | */ |
| 26 | public function toArray(): array; |
| 27 | } |
| 28 |