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