src/AppBundle/MainBundle/Entity/User_Stripe_Details.php line 289

Open in your IDE?
  1. <?php
  2. namespace App\AppBundle\MainBundle\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. use JsonSerializable;
  8. /**
  9.  * AddOns
  10.  *
  11.  * @ORM\Entity
  12.  * @ORM\Table(name="user_stripe_details")
  13.  * @ORM\HasLifecycleCallbacks()
  14.  */
  15. class User_Stripe_Details implements JsonSerializable
  16. {
  17.     /**
  18.      * @ORM\Column(type="integer")
  19.      * @ORM\Id
  20.      * @ORM\GeneratedValue(strategy="AUTO")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @var User
  25.      * @ORM\OneToOne(targetEntity="User", inversedBy="user_stripe_details")
  26.      * @ORM\JoinColumn(name="user_id", referencedColumnName="id")
  27.      */
  28.     private $user;
  29.     /**
  30.      * @ORM\Column(type="string", nullable=true)
  31.      */
  32.     private $business_name;
  33.     /**
  34.      * @ORM\Column(type="string", nullable=true)
  35.      */
  36.     private $mcc;
  37.     /**
  38.      * @var string
  39.      * @ORM\Column(type="string", nullable=true)
  40.      */
  41.     private $country;
  42.     /**
  43.      * @ORM\Column(type="string", nullable=true)
  44.      */
  45.     private $email;
  46.     /**
  47.      * @ORM\Column(type="boolean", nullable=true)
  48.      */
  49.     private $is_stripe_integration_started;
  50.     /**
  51.      * @ORM\Column(type="boolean", nullable=true)
  52.      */
  53.     private $is_stripe_integration_completed;
  54.     /**
  55.      * @var string
  56.      * @ORM\Column(type="string", nullable=true)
  57.      */
  58.     private $accountNumber;
  59.     /**
  60.      * @var string
  61.      * @ORM\Column(type="string", nullable=true)
  62.      */
  63.     private $stripeCustomer;
  64.     /**
  65.      * @var bool
  66.      * @ORM\Column(type="boolean", nullable=true)
  67.      */
  68.     private $payout_enabled false;
  69.     /**
  70.      * @return mixed
  71.      */
  72.     public function getId()
  73.     {
  74.         return $this->id;
  75.     }
  76.     /**
  77.      * @return User
  78.      */
  79.     public function getUser()
  80.     {
  81.         return $this->user;
  82.     }
  83.     /**
  84.      * @param User $user
  85.      */
  86.     public function setUser(User $user)
  87.     {
  88.         $this->user $user;
  89.     }
  90.     /**
  91.      * @return mixed
  92.      */
  93.     public function getBusinessName()
  94.     {
  95.         return $this->business_name;
  96.     }
  97.     /**
  98.      * @param mixed $business_name
  99.      */
  100.     public function setBusinessName($business_name)
  101.     {
  102.         $this->business_name $business_name;
  103.     }
  104.     /**
  105.      * @return mixed
  106.      */
  107.     public function getEmail()
  108.     {
  109.         return $this->email;
  110.     }
  111.     /**
  112.      * @param mixed $email
  113.      */
  114.     public function setEmail($email)
  115.     {
  116.         $this->email $email;
  117.     }
  118.     /**
  119.      * @return mixed
  120.      */
  121.     public function getIsStripeIntegrationStarted()
  122.     {
  123.         return $this->is_stripe_integration_started;
  124.     }
  125.     /**
  126.      * @param mixed $is_stripe_integration_started
  127.      */
  128.     public function setIsStripeIntegrationStarted($is_stripe_integration_started)
  129.     {
  130.         $this->is_stripe_integration_started $is_stripe_integration_started;
  131.     }
  132.     /**
  133.      * @return mixed
  134.      */
  135.     public function getIsStripeIntegrationCompleted()
  136.     {
  137.         return $this->is_stripe_integration_completed;
  138.     }
  139.     /**
  140.      * @param mixed $is_stripe_integration_completed
  141.      */
  142.     public function setIsStripeIntegrationCompleted($is_stripe_integration_completed)
  143.     {
  144.         $this->is_stripe_integration_completed $is_stripe_integration_completed;
  145.     }
  146.     /**
  147.      * @return string
  148.      */
  149.     public function getAccountNumber()
  150.     {
  151.         return $this->accountNumber;
  152.     }
  153.     /**
  154.      * @param string $accountNumber
  155.      */
  156.     public function setAccountNumber($accountNumber)
  157.     {
  158.         $this->accountNumber $accountNumber;
  159.     }
  160.     /**
  161.      * @return string
  162.      */
  163.     public function getStripeCustomer()
  164.     {
  165.         return $this->stripeCustomer;
  166.     }
  167.     /**
  168.      * @param string $stripeCustomer
  169.      */
  170.     public function setStripeCustomer($stripeCustomer)
  171.     {
  172.         $this->stripeCustomer $stripeCustomer;
  173.     }
  174.     /**
  175.      * @return bool
  176.      */
  177.     public function isPayoutEnabled()
  178.     {
  179.         return $this->payout_enabled;
  180.     }
  181.     /**
  182.      * @param bool $payout_enabled
  183.      */
  184.     public function setPayoutEnabled($payout_enabled)
  185.     {
  186.         $this->payout_enabled $payout_enabled;
  187.     }
  188.     /**
  189.      * @return string
  190.      */
  191.     public function getCountry()
  192.     {
  193.         return $this->country;
  194.     }
  195.     /**
  196.      * @param string $country
  197.      */
  198.     public function setCountry($country)
  199.     {
  200.         $this->country $country;
  201.     }
  202.     /**
  203.      * @return mixed
  204.      */
  205.     public function getMcc()
  206.     {
  207.         return $this->mcc;
  208.     }
  209.     /**
  210.      * @param mixed $mcc
  211.      */
  212.     public function setMcc($mcc)
  213.     {
  214.         $this->mcc $mcc;
  215.     }
  216.     public function jsonSerialize()
  217.     {
  218.         return array(
  219.             'id' => $this->id,
  220.             'business_name' => $this->business_name,
  221.             'mcc' => $this->mcc,
  222.             'country' => $this->country,
  223.             'email' => $this->email,
  224.             'accountNumber' => $this->accountNumber,
  225.             'stripeCustomer' => $this->stripeCustomer,
  226.             'is_stripe_integration_completed' => $this->is_stripe_integration_completed,
  227.             'is_stripe_integration_started' => $this->is_stripe_integration_started,
  228.             'created' => $this->createdAt->format('Y-m-d H:i:s'),
  229.             'updated' => $this->updatedAt->format('Y-m-d H:i:s'),
  230.             'payout_enabled' => $this->payout_enabled,
  231.         );
  232.     }
  233.     /**
  234.      * @var \DateTime $created
  235.      *
  236.      * @ORM\Column(name="created_at", type="datetime", nullable=false)
  237.      */
  238.     protected $createdAt;
  239.     /**
  240.      * @var \DateTime $updated
  241.      *
  242.      * @ORM\Column(name="updated_at", type="datetime", nullable=false)
  243.      */
  244.     protected $updatedAt;
  245.     public function getCreatedAt()
  246.     {
  247.         return $this->createdAt;
  248.     }
  249.     public function setCreatedAt($createdAt)
  250.     {
  251.         $this->createdAt $createdAt;
  252.         return $this;
  253.     }
  254.     public function getUpdatedAt()
  255.     {
  256.         return $this->updatedAt;
  257.     }
  258.     public function setUpdatedAt($updatedAt)
  259.     {
  260.         $this->updatedAt $updatedAt;
  261.         return $this;
  262.     }
  263.     /**
  264.      * @ORM\PrePersist
  265.      * @ORM\PreUpdate
  266.      */
  267.     public function updatedTimestamps()
  268.     {
  269.         $this->setUpdatedAt(new \DateTime());
  270.         if ($this->getCreatedAt() === null) {
  271.             $this->setCreatedAt(new \DateTime());
  272.         }
  273.     }
  274.     public function __construct() {
  275.         $this->setCreatedAt(new \DateTime());
  276.     }
  277. }