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

20 lines
313 B
PHP
Executable File

<?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;
}
?>