src/OfficeBrain/Bundle/CmsBundle/Entity/ThirdPartyServiceMeta.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\OfficeBrain\Bundle\CmsBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @author OfficeBrain 4571 <info@officebrain.com>
  6.  *
  7.  * Decsription: Third Party Service Meta Enity used for saving payment configurations
  8.  */
  9. /**
  10.  * ThirdPartyServiceMeta.
  11.  *
  12.  * @ORM\Table(name="tbl_third_party_setting_service_meta")
  13.  * @ORM\Entity(repositoryClass="App\OfficeBrain\Bundle\CmsBundle\Entity\ThirdPartyServiceMetaRepository")
  14.  */
  15. class ThirdPartyServiceMeta
  16. {
  17.     /**
  18.      * @var int
  19.      *
  20.      * @ORM\Column(name="id", type="bigint", options={"unsigned":true})
  21.      * @ORM\Id
  22.      * @ORM\GeneratedValue(strategy="AUTO")
  23.      */
  24.     private $id;
  25.     /**
  26.      * @ORM\ManyToOne(targetEntity="ThirdPartyServiceKey", inversedBy="thirdPartyServiceMeta")
  27.      * @ORM\JoinColumn(name="third_party_service_key_id", referencedColumnName="id")
  28.      **/
  29.     private $thirdPartyServiceKeyId;
  30.     /**
  31.      * @var int
  32.      *
  33.      * @ORM\Column(name="instance_id", type="integer")
  34.      */
  35.     private $instanceId;
  36.     /**
  37.      * @var int
  38.      *
  39.      * @ORM\Column(name="country_id", type="integer")
  40.      */
  41.     private $countryId;
  42.     /**
  43.      * @var string
  44.      *
  45.      * @ORM\Column(name="value", type="string", length=255, nullable=true)
  46.      */
  47.     private $value;
  48.     /**
  49.      * @var int
  50.      *
  51.      * @ORM\Column(name="created_uid", type="integer")
  52.      */
  53.     private $createdUid;
  54.     /**
  55.      * @var \DateTime
  56.      *
  57.      * @ORM\Column(name="created_at", type="datetime")
  58.      */
  59.     private $createdAt;
  60.     /**
  61.      * @var int
  62.      *
  63.      * @ORM\Column(name="updated_uid", type="integer", nullable=true)
  64.      */
  65.     private $updatedUid;
  66.     /**
  67.      * @var \DateTime
  68.      *
  69.      * @ORM\Column(name="updated_at", type="datetime", nullable=true)
  70.      */
  71.     private $updatedAt;
  72.     /**
  73.      * @var \DateTime
  74.      *
  75.      * @ORM\Column(name="deleted_at", type="datetime", nullable=true)
  76.      */
  77.     private $deletedAt;
  78.     /**
  79.      * @var int
  80.      *
  81.      * @ORM\Column(name="deleted_uid", type="integer", nullable=true)
  82.      */
  83.     private $deletedUid;
  84.     /**
  85.      * Get id.
  86.      *
  87.      * @return int
  88.      */
  89.     public function getId()
  90.     {
  91.         return $this->id;
  92.     }
  93.     /**
  94.      * Set thirdPartyServiceKeyId.
  95.      *
  96.      * @param int $thirdPartyServiceKeyId
  97.      *
  98.      * @return ThirdPartyServiceMeta
  99.      */
  100.     public function setThirdPartyServiceKeyId($thirdPartyServiceKeyId)
  101.     {
  102.         $this->thirdPartyServiceKeyId $thirdPartyServiceKeyId;
  103.         return $this;
  104.     }
  105.     /**
  106.      * Get thirdPartyServiceKeyId.
  107.      *
  108.      * @return int
  109.      */
  110.     public function getThirdPartyServiceKeyId()
  111.     {
  112.         return $this->thirdPartyServiceKeyId;
  113.     }
  114.     /**
  115.      * Set instanceId.
  116.      *
  117.      * @param int $instanceId
  118.      *
  119.      * @return ThirdPartyServiceMeta
  120.      */
  121.     public function setInstanceId($instanceId)
  122.     {
  123.         $this->instanceId $instanceId;
  124.         return $this;
  125.     }
  126.     /**
  127.      * Get instanceId.
  128.      *
  129.      * @return int
  130.      */
  131.     public function getInstanceId()
  132.     {
  133.         return $this->instanceId;
  134.     }
  135.     /**
  136.      * Set countryId.
  137.      *
  138.      * @param int $countryId
  139.      *
  140.      * @return ThirdPartyServiceMeta
  141.      */
  142.     public function setCountryId($countryId)
  143.     {
  144.         $this->countryId $countryId;
  145.         return $this;
  146.     }
  147.     /**
  148.      * Get countryId.
  149.      *
  150.      * @return int
  151.      */
  152.     public function getCountryId()
  153.     {
  154.         return $this->countryId;
  155.     }
  156.     /**
  157.      * Set value.
  158.      *
  159.      * @param string $value
  160.      *
  161.      * @return ThirdPartyServiceMeta
  162.      */
  163.     public function setValue($value)
  164.     {
  165.         $this->value $value;
  166.         return $this;
  167.     }
  168.     /**
  169.      * Get value.
  170.      *
  171.      * @return string
  172.      */
  173.     public function getValue()
  174.     {
  175.         return $this->value;
  176.     }
  177.     /**
  178.      * Set createdUid.
  179.      *
  180.      * @param int $createdUid
  181.      *
  182.      * @return ThirdPartyServiceMeta
  183.      */
  184.     public function setCreatedUidd($createdUid)
  185.     {
  186.         $this->createdUid $createdUid;
  187.         return $this;
  188.     }
  189.     /**
  190.      * Get createdUid.
  191.      *
  192.      * @return int
  193.      */
  194.     public function getCreatedUid()
  195.     {
  196.         return $this->createdUid;
  197.     }
  198.     /**
  199.      * Set createdAt.
  200.      *
  201.      * @param \DateTime $createdAt
  202.      *
  203.      * @return ThirdPartyServiceMeta
  204.      */
  205.     public function setCreatedAt($createdAt)
  206.     {
  207.         $this->createdAt $createdAt;
  208.         return $this;
  209.     }
  210.     /**
  211.      * Get createdAt.
  212.      *
  213.      * @return \DateTime
  214.      */
  215.     public function getCreatedAt()
  216.     {
  217.         return $this->createdAt;
  218.     }
  219.     /**
  220.      * Set updatedUid.
  221.      *
  222.      * @param int $updatedUid
  223.      *
  224.      * @return ThirdPartyServiceMeta
  225.      */
  226.     public function setUpdatedUid($updatedUid)
  227.     {
  228.         $this->updatedUid $updatedUid;
  229.         return $this;
  230.     }
  231.     /**
  232.      * Get updatedUid.
  233.      *
  234.      * @return int
  235.      */
  236.     public function getUpdatedUid()
  237.     {
  238.         return $this->updatedUid;
  239.     }
  240.     /**
  241.      * Set updatedAt.
  242.      *
  243.      * @param \DateTime $updatedAt
  244.      *
  245.      * @return ThirdPartyServiceMeta
  246.      */
  247.     public function setUpdatedAt($updatedAt)
  248.     {
  249.         $this->updatedAt $updatedAt;
  250.         return $this;
  251.     }
  252.     /**
  253.      * Get updatedAt.
  254.      *
  255.      * @return \DateTime
  256.      */
  257.     public function getUpdatedAt()
  258.     {
  259.         return $this->updatedAt;
  260.     }
  261.     /**
  262.      * Set deletedAt.
  263.      *
  264.      * @param \DateTime $deletedAt
  265.      *
  266.      * @return ThirdPartyServiceMeta
  267.      */
  268.     public function setDeletedAt($deletedAt)
  269.     {
  270.         $this->deletedAt $deletedAt;
  271.         return $this;
  272.     }
  273.     /**
  274.      * Get deletedAt.
  275.      *
  276.      * @return \DateTime
  277.      */
  278.     public function getDeletedAt()
  279.     {
  280.         return $this->deletedAt;
  281.     }
  282.     /**
  283.      * Set deletedUid.
  284.      *
  285.      * @param int $deletedUid
  286.      *
  287.      * @return ThirdPartyServiceMeta
  288.      */
  289.     public function setDeletedUid($deletedUid)
  290.     {
  291.         $this->deletedUid $deletedUid;
  292.         return $this;
  293.     }
  294.     /**
  295.      * Get deletedUid.
  296.      *
  297.      * @return int
  298.      */
  299.     public function getDeletedUid()
  300.     {
  301.         return $this->deletedUid;
  302.     }
  303.     /**
  304.      * Set createdUid.
  305.      *
  306.      * @param int $createdUid
  307.      *
  308.      * @return ThirdPartyServiceMeta
  309.      */
  310.     public function setCreatedUid($createdUid)
  311.     {
  312.         $this->createdUid $createdUid;
  313.         return $this;
  314.     }
  315. }