account = $account; return $this; } /** * @return ApiAccount */ public function getAccount() { return $this->account; } /** * @param string $action * * @return ApiLog */ public function setAction($action) { $this->action = $action; return $this; } /** * @return string */ public function getAction() { return $this->action; } /** * @param string $aspect * * @return ApiLog */ public function setAspect($aspect) { $this->aspect = $aspect; return $this; } /** * @return string */ public function getAspect() { return $this->aspect; } /** * @param integer $errorCode * * @return ApiLog */ public function setErrorCode($errorCode) { $this->errorCode = $errorCode; return $this; } /** * @return integer */ public function getErrorCode() { return $this->errorCode; } /** * @param string $errorMessage * * @return ApiLog */ public function setErrorMessage($errorMessage) { $this->errorMessage = $errorMessage; return $this; } /** * @return string */ public function getErrorMessage() { return $this->errorMessage; } /** * @param string $format * * @return ApiLog */ public function setFormat($format) { $this->format = $format; return $this; } /** * @return string */ public function getFormat() { return $this->format; } /** * @param string $general * * @return ApiLog */ public function setGeneral($general) { $this->general = $general; return $this; } /** * @return string */ public function getGeneral() { return $this->general; } /** * @param string $resource * * @return ApiLog */ public function setResource($resource) { $this->resource = $resource; return $this; } /** * @return string */ public function getResource() { return $this->resource; } /** * @param string $route * * @return ApiLog */ public function setRoute($route) { $this->route = $route; return $this; } /** * @return string */ public function getRoute() { return $this->route; } /** * @param integer $statusCode * * @return ApiLog */ public function setStatusCode($statusCode) { $this->statusCode = $statusCode; return $this; } /** * @return integer */ public function getStatusCode() { return $this->statusCode; } /** * @param \DateTime $created * * @return ApiLog */ public function setCreated(\DateTime $created) { $this->created = $created; return $this; } /** * @return \DateTime */ public function getCreated() { return $this->created; } /** * @return integer */ public function getId() { return $this->id; } /** * @param string $method * * @return ApiLog */ public function setMethod($method) { $this->method = $method; return $this; } /** * @return string */ public function getMethod() { return $this->method; } }