array( 'var' => 'timestamp', 'isRequired' => true, 'type' => TType::I64, ), 2 => array( 'var' => 'fields', 'isRequired' => true, 'type' => TType::LST, 'etype' => TType::STRUCT, 'elem' => array( 'type' => TType::STRUCT, 'class' => '\Jaeger\Thrift\Tag', ), ), ); /** * @var int */ public $timestamp = null; /** * @var \Jaeger\Thrift\Tag[] */ public $fields = null; public function __construct($vals=null) { if (is_array($vals)) { parent::__construct(self::$_TSPEC, $vals); } } public function getName() { return 'Log'; } public function read($input) { return $this->_read('Log', self::$_TSPEC, $input); } public function write($output) { return $this->_write('Log', self::$_TSPEC, $output); } }