/** * @deprecated since version 2.0.3.3 * * Use RetornoPagSeguroComponent::obterDadosPagamento nas próximas chamadas * * Retorna tipo e meio de pagamento * * @return array * @since 1.0 */ public function obterDadosPagamento() { $dadosPagamento = array('tipo_id' => $this->consultaPorCodigo->getPaymentMethod()->getType()->getValue(), 'tipo' => Codes::obterTipoPagamento($this->consultaPorCodigo->getPaymentMethod()->getType()->getValue()), 'metodo_id' => $this->consultaPorCodigo->getPaymentMethod()->getCode()->getValue(), 'metodo' => Codes::obterMeioPagamento($this->consultaPorCodigo->getPaymentMethod()->getCode()->getValue())); return $dadosPagamento; }