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