<?php namespace Vn\Rest; /** * Class used for replies. * * @property Error $error The error object or %NULL if no error * @property array $warnings Array with warning messages * @property Object $data The returned data **/ class Reply { var $error = NULL; var $warnings = NULL; var $data = NULL; } ?>