RushCode/m1-api

View on GitHub
src/Methods/Request/GetSessionList.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace leocata\M1\Methods;

use leocata\M1\Abstracts\RequestMethods;

/**
 * Class GetSessionList.
 */
class GetSessionList extends RequestMethods
{
    /**
     * Timestamp (in milliseconds since 01.01.1970)
     * Query of active sessions since the indicated time. If this parameter is absent, all sessions get out.
     *
     * @var int
     */
    public $since;

    public function getMandatoryFields(): array
    {
        return [];
    }
}