array( 'var' => 'span', 'isRequired' => false, 'type' => TType::STRUCT, 'class' => '\Jaeger\Thrift\Crossdock\ObservedSpan', ), 2 => array( 'var' => 'downstream', 'isRequired' => false, 'type' => TType::STRUCT, 'class' => '\Jaeger\Thrift\Crossdock\TraceResponse', ), 3 => array( 'var' => 'notImplementedError', 'isRequired' => true, 'type' => TType::STRING, ), ); /** * @var \Jaeger\Thrift\Crossdock\ObservedSpan */ public $span = null; /** * @var \Jaeger\Thrift\Crossdock\TraceResponse */ public $downstream = null; /** * @var string */ public $notImplementedError = null; public function __construct($vals=null) { if (is_array($vals)) { parent::__construct(self::$_TSPEC, $vals); } } public function getName() { return 'TraceResponse'; } public function read($input) { return $this->_read('TraceResponse', self::$_TSPEC, $input); } public function write($output) { return $this->_write('TraceResponse', self::$_TSPEC, $output); } }