/** * Delete file * * @return array */ public function delete() { return $this->api->__preparedRequest('file_storage', 'DELETE', array('uuid' => $this->uuid)); }
/** * Try to store group. * * @return array */ public function store() { return $this->api->__preparedRequest('group_storage', 'POST', array('uuid' => $this->getUuid())); }
/** * Delete file * * @return array */ public function delete() { return $this->api->__preparedRequest(API_TYPE_FILE, REQUEST_TYPE_DELETE, array('file_id' => $this->file_id)); }