shardId=$shardId; $this->status = $status; $this->inclusiveBeginKey = $inclusiveBeginKey; $this->exclusiveEndKey = $exclusiveEndKey; $this->createTime = $createTime; } /** * Get the shardId * * @return integer the shard id */ public function getShardId(){ return $this -> shardId; } /** * Get the shard status * * @return string the shard status */ public function getStatus(){ return $this -> status; } /** * Get the shard inclusive begin key * * @return string inclusive begin key */ public function getInclusiveBeginKey(){ return $this -> inclusiveBeginKey; } /** * Get the shard exclusive begin key * * @return string exclusive begin key */ public function getExclusiveBeginKey(){ return $this -> exclusiveBeginKey; } /** * Get the shard create time * * @return integer createTime */ public function getCreateTime(){ return $this -> createTime; } }