EvilFreelancer/rezdy-api-php

View on GitHub
src/Interfaces/ProductsInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Rezdy\Interfaces;

interface ProductsInterface
{
    /**
     * Create product
     *
     * @return \Rezdy\Interfaces\QueryInterface
     */
    public function create(): QueryInterface;

    /**
     * Search products
     *
     * @return \Rezdy\Interfaces\QueryInterface
     */
    public function search(): QueryInterface;

    /**
     * Search marketplace products
     *
     * @return \Rezdy\Interfaces\QueryInterface
     */
    public function searchMarketplace(): QueryInterface;
}