<?php
namespace App\Services;
/**
* Interface para integración con Odoo
* Se completará cuando Opens entregue documentación de su API
*/
interface OdooServiceInterface
{
public function sendDebts(int $contractId, array $debts): array;
public function sendPayment(int $contractId, array $paymentData): array;
public function sendContract(int $contractId): array;
public function checkDebtExists(string $externalRef): bool;
}