/**
  * @group integration
  * @return array
  */
 public function requestProvider()
 {
     $request = new RequestFinancialOperationRequest();
     $alias = new Alias();
     $alias->setAliasName("351#911521624")->setAliasTypeCde(Alias::CELLPHONE);
     $merchant = new Merchant();
     $merchant->setIPAddress($this->getConfig()->getMerchantIP())->setPosId($this->getConfig()->getMerchantPosId());
     $messageProperties = new MessageProperties();
     $messageProperties->setApiVersion("1")->setChannel("01")->setChannelTypeCode("VPOS")->setNetworkCode("MULTIB")->setServiceType("01")->setTimestamp(date_create("2014-10-04"));
     $request->setAditionalData("TESTE")->setAlias($alias)->setMerchant($merchant)->setMessageProperties($messageProperties);
     return array(array($request));
 }