<?php

namespace App\Http\Interfaces;

use App\Models\Hooks;

interface PodioLeadsSyncingInterface
{
    /**
     * To get the hook modal instance
     */
    public function getHook(): Hooks;

    /**
     * To create economic Properties for creating client
     * 
     * @param array $client
     * @return array
     */
    public function economicCreateAttribute(array $client): array;
}
