appwrite/src/Appwrite/SDK/Response.php

27 lines
407 B
PHP
Raw Normal View History

2025-01-17 04:31:39 +00:00
<?php
namespace Appwrite\SDK;
2025-06-17 20:02:17 +00:00
readonly class Response
2025-01-17 04:31:39 +00:00
{
/**
* @param int $code
* @param string|array $model
*/
public function __construct(
private int $code,
private string|array $model
) {
}
public function getCode(): int
{
return $this->code;
}
public function getModel(): string|array
{
return $this->model;
}
2025-01-17 04:39:16 +00:00
}