array( 'var' => 'ok', 'isRequired' => true, 'type' => TType::BOOL, ), ); /** * @var bool */ public $ok = null; public function __construct($vals=null) { if (is_array($vals)) { parent::__construct(self::$_TSPEC, $vals); } } public function getName() { return 'BatchSubmitResponse'; } public function read($input) { return $this->_read('BatchSubmitResponse', self::$_TSPEC, $input); } public function write($output) { return $this->_write('BatchSubmitResponse', self::$_TSPEC, $output); } }