endAt = $endAt; } /** * @return Google_Service_Firestore_Cursor */ public function getEndAt() { return $this->endAt; } /** * @param Google_Service_Firestore_CollectionSelector */ public function setFrom($from) { $this->from = $from; } /** * @return Google_Service_Firestore_CollectionSelector */ public function getFrom() { return $this->from; } public function setLimit($limit) { $this->limit = $limit; } public function getLimit() { return $this->limit; } public function setOffset($offset) { $this->offset = $offset; } public function getOffset() { return $this->offset; } /** * @param Google_Service_Firestore_Order */ public function setOrderBy($orderBy) { $this->orderBy = $orderBy; } /** * @return Google_Service_Firestore_Order */ public function getOrderBy() { return $this->orderBy; } /** * @param Google_Service_Firestore_Projection */ public function setSelect(Google_Service_Firestore_Projection $select) { $this->select = $select; } /** * @return Google_Service_Firestore_Projection */ public function getSelect() { return $this->select; } /** * @param Google_Service_Firestore_Cursor */ public function setStartAt(Google_Service_Firestore_Cursor $startAt) { $this->startAt = $startAt; } /** * @return Google_Service_Firestore_Cursor */ public function getStartAt() { return $this->startAt; } /** * @param Google_Service_Firestore_Filter */ public function setWhere(Google_Service_Firestore_Filter $where) { $this->where = $where; } /** * @return Google_Service_Firestore_Filter */ public function getWhere() { return $this->where; } }