Пример #1
0
 /**
  * Delete file
  *
  * @return array
  */
 public function delete()
 {
     return $this->api->__preparedRequest('file_storage', 'DELETE', array('uuid' => $this->uuid));
 }
Пример #2
0
 /**
  * Try to store group.
  *
  * @return array
  */
 public function store()
 {
     return $this->api->__preparedRequest('group_storage', 'POST', array('uuid' => $this->getUuid()));
 }
Пример #3
0
 /**
  * Delete file
  *
  * @return array
  */
 public function delete()
 {
     return $this->api->__preparedRequest(API_TYPE_FILE, REQUEST_TYPE_DELETE, array('file_id' => $this->file_id));
 }