0
1
Fork 0
hedera-web-mindshore/vn/web/json-reply.php

19 lines
296 B
PHP
Raw Normal View History

<?php
2016-07-22 20:00:27 +00:00
namespace Vn\Web;
/**
* 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
**/
2016-07-22 20:00:27 +00:00
class JsonReply
{
var $warnings = NULL;
var $data = NULL;
}
?>