<?php
/**
 * @license GPL-2.0-or-later
 *
 * Modified using {@see https://github.com/BrianHenryIE/strauss}.
 */ declare(strict_types=1);

namespace KadenceWP\KadencePro\LiquidWeb\LicensingApiClient\Responses\Credit;

use KadenceWP\KadencePro\LiquidWeb\LicensingApiClient\Responses\Contracts\Response;

/**
 * Represents a credit pool deletion response.
 *
 * @implements Response<array{deleted: bool, pool_id: int}>
 */
final class DeletePool implements Response
{
	public bool $deleted;

	public int $poolId;

	private function __construct(bool $deleted, int $poolId) {
		$this->deleted = $deleted;
		$this->poolId  = $poolId;
	}

	/**
	 * @param array{deleted: bool, pool_id: int} $attributes
	 */
	public static function from(array $attributes): self {
		return new self(
			$attributes['deleted'],
			$attributes['pool_id']
		);
	}

	/**
	 * @return array{deleted: bool, pool_id: int}
	 */
	public function toArray(): array {
		return [
			'deleted' => $this->deleted,
			'pool_id' => $this->poolId,
		];
	}
}
