<?php
namespace App\Entity;
use App\Repository\AuditCybersourceTransLogRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=AuditCybersourceTransLogRepository::class)
*/
class AuditCybersourceTransLog
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
public function getId(): ?int
{
return $this->id;
}
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $order_number;
/**
* @ORM\Column(type="string", length=4, nullable=true)
*/
private $ccno_ref;
/**
* @ORM\Column(type="float", nullable=true)
*/
private $monto_pago;
/**
* @ORM\Column(type="date", nullable=true)
*/
private $fecha_reg;
/**
* @ORM\Column(type="time", nullable=true)
*/
private $hora_reg;
/**
* @ORM\Column(type="string", length=25, nullable=true)
*/
private $estado;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $fecha_estado;
/**
* @ORM\Column(type="string", length=15, nullable=true)
*/
private $reasonCode;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $requestID;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $requestToken;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $authorizationCode;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $reconciliationID;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $paymentNetworkTransactionID;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $reconciliationReferenceNumber;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $user;
}