GDS\Gateway\RESTv1::getEndCursor PHP Метод

getEndCursor() публичный Метод

Get the end cursor from the last response
public getEndCursor ( ) : mixed
Результат mixed
    public function getEndCursor()
    {
        if (isset($this->obj_last_response->batch) && isset($this->obj_last_response->batch->endCursor)) {
            return $this->obj_last_response->batch->endCursor;
        }
        return null;
    }