forked from verdnatura/hedera-web
20 lines
279 B
PHP
Executable File
20 lines
279 B
PHP
Executable File
<?php
|
|
|
|
namespace Vn\Web;
|
|
|
|
require_once (__DIR__.'/json-exception.php');
|
|
|
|
/**
|
|
* Class used for replies.
|
|
*
|
|
* @property Object $data The returned data
|
|
* @property array $warnings Array with warning messages
|
|
**/
|
|
class JsonReply
|
|
{
|
|
var $data = NULL;
|
|
var $warnings = NULL;
|
|
}
|
|
|
|
?>
|