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