thomas-kl1/php-sdk-zoho-desk

View on GitHub
src/Model/PagerCriteriaInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Copyright © Thomas Klein, All rights reserved.
 */
declare(strict_types=1);

namespace Zoho\Desk\Model;

/**
 * @api
 */
interface PagerCriteriaInterface extends CriteriaInterface
{
    public function getFrom(): ?int;

    public function getLimit(): ?int;

    public function getSortBy(): ?string;

    public function getSortOrder(): ?string;
}