/**
  * (non-PHPdoc)
  *
  * @see \Symfony\Component\Console\Command\Command::execute()
  */
 public function execute(InputInterface $input, OutputInterface $output)
 {
     parent::execute($input, $output);
     $this->addOption("project_ids", "pid", InputOption::VALUE_OPTIONAL, "ITCloud Pivotal Tracker API v5. (int) The ID of the project.");
 }
 /**
  * (non-PHPdoc)
  *
  * @see \Symfony\Component\Console\Command\Command::execute() with_label string in the request query.
  *      — A label name which all returned stories must match.
  *
  *      with_story_type enumerated string in the request query.
  *      — A story's type which all returned stories must match.
  *      Valid enumeration values: feature, bug, chore, release
  *
  *      with_state enumerated string in the request query.
  *      — A story's current_state which all returned stories must match.
  *      Valid enumeration values: accepted, delivered, finished, started, rejected, planned, unstarted, unscheduled
  *
  *      after_story_id int in the request query.
  *      — Filters results to stories that are after the given story id
  *
  *      before_story_id int in the request query.
  *      — Filters results to stories that are before the given story id
  *
  *      accepted_before datetime in the request query.
  *      — A date and time (ISO 8601 format or milliseconds) which all returned stories are accepted before.
  *
  *      accepted_after datetime in the request query.
  *      — A date and time (ISO 8601 format or milliseconds) which all returned stories are accepted after.
  *
  *      created_before datetime in the request query.
  *      — A date and time (ISO 8601 format or milliseconds) which all returned stories are created before.
  *
  *      created_after datetime in the request query.
  *      — A date and time (ISO 8601 format or milliseconds) which all returned stories are created after.
  *
  *      updated_before datetime in the request query.
  *      — A date and time (ISO 8601 format or milliseconds) which all returned stories are updated before.
  *
  *      updated_after datetime in the request query.
  *      — A date and time (ISO 8601 format or milliseconds) which all returned stories are updated after.
  *
  *      deadline_before datetime in the request query.
  *      — A date and time (ISO 8601 format or milliseconds) that release dates fall before.
  *
  *      deadline_after datetime in the request query.
  *      — A date and time (ISO 8601 format or milliseconds) that release dates fall after.
  *
  *      limit int in the request query.
  *      — The number of stories you want returned.
  *
  *      offset int in the request query.
  *      — With the first story in your priority list as 0, the index of the first story you want returned.
  *
  *      filter string in the request query.
  *      — This parameter supplies a search string; only stories that match the search criteria are returned. Cannot be used together with any
  *      other parameters. How can a search be refined?
  */
 public function execute(InputInterface $input, OutputInterface $output)
 {
     parent::execute($input, $output);
 }
 /**
  * (non-PHPdoc)
  *
  * @see \Symfony\Component\Console\Command\Command::execute()
  */
 public function execute(InputInterface $input, OutputInterface $output)
 {
     parent::execute($input, $output);
     $this->addOption("project_ids", "pids", InputOption::VALUE_REQUIRED, "ITCloud Pivotal Tracker API v5. Comma seperated (int)s The IDs of the project.");
 }