src/CasinoBundle/Entity/Info.php line 24

Open in your IDE?
  1. <?php
  2. namespace App\CasinoBundle\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * Info
  8.  *
  9.  * @ORM\Table(
  10.  *     name="info",
  11.  *     indexes={
  12.  *         @ORM\Index(name="info_affiliate_url_index", columns={"affiliate_program_url"}),
  13.  *         @ORM\Index(name="info_deposit_min_in_dollar_index", columns={"deposit_min_in_dollar"}),
  14.  *         @ORM\Index(name="info_deposit_min_in_euro_index", columns={"deposit_min_in_euro"}),
  15.  *         @ORM\Index(name="info_deposit_min_in_pound_index", columns={"deposit_min_in_pound"})
  16.  *     }
  17.  * )
  18.  * @ORM\Entity(repositoryClass="App\CasinoBundle\Repository\InfoRepository")
  19.  * @ORM\Cache(usage="NONSTRICT_READ_WRITE", region="one_day")
  20.  */
  21. class Info
  22. {
  23.     use LogoTrait;
  24.     /**
  25.      * @var int
  26.      *
  27.      * @ORM\Column(name="id", type="integer", nullable=false)
  28.      * @ORM\Id
  29.      * @ORM\GeneratedValue()
  30.      */
  31.     private $id;
  32.     /**
  33.      * @var int
  34.      *
  35.      * @ORM\Column(name="established", type="integer", nullable=true)
  36.      */
  37.     private $established;
  38.     /**
  39.      * @var int
  40.      *
  41.      * @ORM\Column(name="established_checked", type="boolean", nullable=true)
  42.      */
  43.     private $establishedChecked;
  44.     /**
  45.      * @ORM\OneToOne(targetEntity="App\CasinoBundle\Entity\Casino", inversedBy="info")
  46.      * @ORM\JoinColumn(nullable=false)
  47.      */
  48.     private $casino;
  49.     /**
  50.      * @var string
  51.      *
  52.      * @ORM\Column(type="string", length=255, nullable=true)
  53.      */
  54.     private $termsUrl;
  55.     /**
  56.      * @var string
  57.      *
  58.      * @ORM\Column(type="string", length=255, nullable=true)
  59.      */
  60.     private $alternativeName;
  61.     /**
  62.      * @var string
  63.      *
  64.      * @ORM\Column(type="string", length=255, nullable=true)
  65.      */
  66.     private $casinoPromotion;
  67.     /**
  68.      * @var string
  69.      *
  70.      * @ORM\Column(type="string", length=255, nullable=true)
  71.      */
  72.     private $withdrawalLimit;
  73.     /**
  74.      * @var string
  75.      *
  76.      * @ORM\Column(name="affiliate_program_url", type="string", length=255, nullable=true)
  77.      */
  78.     private $affiliateProgramUrl;
  79.     /**
  80.      * @var string
  81.      *
  82.      * @ORM\Column(type="string", length=255, nullable=true)
  83.      */
  84.     private $affiliateProgram;
  85.     /**
  86.      * @var string
  87.      *
  88.      * @ORM\Column(type="string", length=255, nullable=true)
  89.      */
  90.     private $affiliateUrl;
  91.     /**
  92.      * @var string
  93.      *
  94.      * @ORM\Column(type="string", length=255, nullable=true)
  95.      */
  96.     private $manualFlushing;
  97.     /**
  98.      * @var string
  99.      *
  100.      * @ORM\Column(type="string", length=255, nullable=true)
  101.      */
  102.     private $rtp;
  103.     /**
  104.      * @var string
  105.      *
  106.      * @ORM\Column(type="string", length=255, nullable=true)
  107.      */
  108.     private $liveChat;
  109.     /**
  110.      * @var string
  111.      *
  112.      * @ORM\Column(type="string", length=255, nullable=true)
  113.      */
  114.     private $withdrawalTimesEwallets;
  115.     /**
  116.      * @var string
  117.      *
  118.      * @ORM\Column(type="string", length=255, nullable=true)
  119.      */
  120.     private $withdrawalTimesCreditDebitCards;
  121.     /**
  122.      * @var string
  123.      *
  124.      * @ORM\Column(type="string", length=255, nullable=true)
  125.      */
  126.     private $withdrawalTimesBankTransfers;
  127.     /**
  128.      * @var string
  129.      *
  130.      * @ORM\Column(type="string", length=255, nullable=true)
  131.      */
  132.     private $withdrawalTimesCheques;
  133.     /**
  134.      * @var string
  135.      *
  136.      * @ORM\Column(type="string", length=255, nullable=true)
  137.      */
  138.     private $withdrawalTimesPendingTime;
  139.     /**
  140.      * @var int
  141.      *
  142.      * @ORM\Column(name="withdrawal_times_pending_time_min", type="integer", nullable=true)
  143.      */
  144.     private $withdrawalTimesPendingTimeMin;
  145.     /**
  146.      * @var int
  147.      *
  148.      * @ORM\Column(name="withdrawal_times_pending_time_max", type="integer", nullable=true)
  149.      */
  150.     private $withdrawalTimesPendingTimeMax;
  151.     /**
  152.      * @ORM\Column(type="text", nullable=true)
  153.      */
  154.     private $summary;
  155.     /**
  156.      * @ORM\Column(type="text", nullable=true)
  157.      */
  158.     private $positiveReview;
  159.     /**
  160.      * @ORM\Column(type="text", nullable=true)
  161.      */
  162.     private $negativeReview;
  163.     /**
  164.      * @ORM\Column(type="text", nullable=true)
  165.      */
  166.     private $seoReport;
  167.     /**
  168.      * @ORM\Column(type="text", nullable=true)
  169.      */
  170.     private $contact;
  171.     /**
  172.      * @var string
  173.      *
  174.      * @ORM\Column(type="text", nullable=true)
  175.      */
  176.     private $tip;
  177.     /**
  178.      * @var string
  179.      *
  180.      * @ORM\Column(type="string", length=255, nullable=true)
  181.      */
  182.     private $email;
  183.     /**
  184.      * @var string
  185.      *
  186.      * @ORM\Column(type="string", length=255, nullable=true)
  187.      */
  188.     private $telephone;
  189.     /**
  190.      * @var string
  191.      *
  192.      * @ORM\Column(type="string", length=255, nullable=true)
  193.      */
  194.     private $withdrawalLock;
  195.     /**
  196.      * @var string
  197.      *
  198.      * @ORM\Column(type="string", length=255, nullable=true)
  199.      */
  200.     private $depositMin;
  201.     /**
  202.      * @var int
  203.      *
  204.      * @ORM\Column(type="integer", nullable=true)
  205.      */
  206.     private $depositMinInDollar;
  207.     /**
  208.      * @var int
  209.      *
  210.      * @ORM\Column(type="integer", nullable=true)
  211.      */
  212.     private $depositMinInEuro;
  213.     /**
  214.      * @var int
  215.      *
  216.      * @ORM\Column(type="integer", nullable=true)
  217.      */
  218.     private $depositMinInPound;
  219.     /**
  220.      * @var string
  221.      *
  222.      * @ORM\Column(type="string", nullable=true)
  223.      */
  224.     private $depositMinInCrypto;
  225.     /**
  226.      * @var string
  227.      *
  228.      * @ORM\Column(type="string", length=255, nullable=true)
  229.      */
  230.     private $withdrawalMin;
  231.     /**
  232.      * @var string
  233.      *
  234.      * @ORM\Column(type="string", length=255, nullable=true)
  235.      */
  236.     private $downloadAvailable;
  237.     /**
  238.      * @var string
  239.      *
  240.      * @ORM\Column(type="string", length=255, nullable=true)
  241.      */
  242.     private $slotsScanned;
  243.     /**
  244.      * @var string
  245.      *
  246.      * @ORM\Column(type="string", length=255, nullable=true)
  247.      */
  248.     private $condition;
  249.     /**
  250.      * @var string
  251.      *
  252.      * @ORM\Column(type="string", length=255, nullable=true)
  253.      */
  254.     private $slotcatalogSlug;
  255.     /**
  256.      * @var string
  257.      *
  258.      * @ORM\Column(type="string", length=255, nullable=true)
  259.      */
  260.     private $payoutRatio;
  261.     /**
  262.      * @var string
  263.      *
  264.      * @ORM\Column(type="string", length=255, nullable=true)
  265.      */
  266.     private $supportEmail;
  267.     /**
  268.      * @var integer
  269.      *
  270.      * @ORM\Column(type="integer", nullable=true)
  271.      */
  272.     private $supportEmailReactionTime;
  273.     /**
  274.      * @var boolean
  275.      *
  276.      * @ORM\Column(type="boolean", nullable=true)
  277.      */
  278.     private $supportChat;
  279.     /**
  280.      * @var integer
  281.      *
  282.      * @ORM\Column(type="integer", nullable=true)
  283.      */
  284.     private $supportChatReactionTime;
  285.     /**
  286.      * @var string
  287.      *
  288.      * @ORM\Column(type="string", length=255, nullable=true)
  289.      */
  290.     private $supportPhone;
  291.     /**
  292.      * @var boolean
  293.      *
  294.      * @ORM\Column(name="support_phone_24_7", type="boolean", nullable=true)
  295.      */
  296.     private $supportPhone24Per7;
  297.     /**
  298.      * @var integer
  299.      *
  300.      * @ORM\Column(type="integer", nullable=true)
  301.      */
  302.     private $pageSpeedPc;
  303.     /**
  304.      * @var integer
  305.      *
  306.      * @ORM\Column(type="integer", nullable=true)
  307.      */
  308.     private $pageSpeedMobile;
  309.     /**
  310.      * @var float
  311.      *
  312.      * @ORM\Column(type="float", nullable=true)
  313.      */
  314.     private $ratingAskgamblers;
  315.     /**
  316.      * @var float
  317.      *
  318.      * @ORM\Column(type="float", nullable=true)
  319.      */
  320.     private $ratingCasinoOrg;
  321.     /**
  322.      * @var float
  323.      *
  324.      * @ORM\Column(type="float", nullable=true)
  325.      */
  326.     private $ratingCasinoGuru;
  327.     /**
  328.      * @var float
  329.      *
  330.      * @ORM\Column(type="float", nullable=true)
  331.      */
  332.     private $ratingKeyToCasinos;
  333.     /**
  334.      * @ORM\Column(name="bonus_label", type="string", length=255, nullable=true)
  335.      */
  336.     private $bonusLabel;
  337.     /**
  338.      * @ORM\Column(name="voonix", type="string", length=255, nullable=true)
  339.      */
  340.     private $voonix;
  341.     /**
  342.      * @var boolean
  343.      *
  344.      * @ORM\Column(name="in_house_support_team", type="boolean", nullable=true)
  345.      */
  346.     private $inHouseSupportTeam;
  347.     /**
  348.      * @var boolean
  349.      *
  350.      * @ORM\Column(name="in_house_retention_team", type="boolean", nullable=true)
  351.      */
  352.     private $inHouseRetentionTeam;
  353.     /**
  354.      * @var string
  355.      *
  356.      * @ORM\Column(name="casino_card_image", type="string", length=255, nullable=true)
  357.      */
  358.     private $casinoCardImage;
  359.     /**
  360.      * @var string
  361.      *
  362.      * @ORM\Column(name="casino_card_background", type="string", length=255, nullable=true)
  363.      */
  364.     private $casinoCardBackground;
  365.     /**
  366.      * @return int
  367.      */
  368.     public function getId(): int
  369.     {
  370.         return $this->id;
  371.     }
  372.     /**
  373.      * @param int $id
  374.      * @return void
  375.      */
  376.     public function setId(int $id): void
  377.     {
  378.         $this->id $id;
  379.     }
  380.     /**
  381.      * @return string|null
  382.      */
  383.     public function getAlternativeName(): ?string
  384.     {
  385.         return $this->alternativeName;
  386.     }
  387.     /**
  388.      * @param string|null $name
  389.      * @return $this
  390.      */
  391.     public function setAlternativeName(?string $name): self
  392.     {
  393.         $this->alternativeName $name;
  394.         return $this;
  395.     }
  396.     /**
  397.      * @return int|null
  398.      */
  399.     public function getEstablished(): ?int
  400.     {
  401.         return $this->established;
  402.     }
  403.     public function setEstablished(?int $established): self
  404.     {
  405.         $this->established $established;
  406.         return $this;
  407.     }
  408.     public function getEstablishedChecked(): ?bool
  409.     {
  410.         return $this->establishedChecked;
  411.     }
  412.     public function setEstablishedChecked(?bool $establishedChecked): self
  413.     {
  414.         $this->establishedChecked $establishedChecked;
  415.         return $this;
  416.     }
  417.     public function getCasino(): ?Casino
  418.     {
  419.         return $this->casino;
  420.     }
  421.     public function setCasino(?Casino $casino): self
  422.     {
  423.         $this->casino $casino;
  424.         return $this;
  425.     }
  426.     public function setPayoutRatio(?string $value): self
  427.     {
  428.         $this->payoutRatio $value;
  429.         return $this;
  430.     }
  431.     public function getPayoutRatio(): ?string
  432.     {
  433.         return $this->payoutRatio;
  434.     }
  435.     public function setTermsUrl(?string $value): self
  436.     {
  437.         $this->termsUrl $value;
  438.         return $this;
  439.     }
  440.     public function getTermsUrl(): ?string
  441.     {
  442.         return $this->termsUrl;
  443.     }
  444.     public function setCasinoPromotion(?string $value): self
  445.     {
  446.         $this->casinoPromotion $value;
  447.         return $this;
  448.     }
  449.     public function getCasinoPromotion(): ?string
  450.     {
  451.         return $this->casinoPromotion;
  452.     }
  453.     public function setWithdrawalLimit(?string $value): self
  454.     {
  455.         $this->withdrawalLimit $value;
  456.         return $this;
  457.     }
  458.     public function getWithdrawalLimit(): ?string
  459.     {
  460.         return $this->withdrawalLimit;
  461.     }
  462.     public function setAffiliateProgramUrl(?string $value): self
  463.     {
  464.         $this->affiliateProgramUrl $value;
  465.         return $this;
  466.     }
  467.     public function getAffiliateProgramUrl(): ?string
  468.     {
  469.         return $this->affiliateProgramUrl;
  470.     }
  471.     public function setAffiliateProgram(?string $value): self
  472.     {
  473.         $this->affiliateProgram $value;
  474.         return $this;
  475.     }
  476.     public function getAffiliateUrl(): ?string
  477.     {
  478.         return $this->affiliateUrl;
  479.     }
  480.     public function setAffiliateUrl(?string $value): self
  481.     {
  482.         $this->affiliateUrl $value;
  483.         return $this;
  484.     }
  485.     public function getAffiliateProgram(): ?string
  486.     {
  487.         return $this->affiliateProgram;
  488.     }
  489.     public function setManualFlushing(?string $value): self
  490.     {
  491.         $this->manualFlushing $value;
  492.         return $this;
  493.     }
  494.     public function getManualFlushing(): ?string
  495.     {
  496.         return $this->manualFlushing;
  497.     }
  498.     public function setRtp(?string $value): self
  499.     {
  500.         $this->rtp $value;
  501.         return $this;
  502.     }
  503.     public function getRtp(): ?string
  504.     {
  505.         return $this->rtp;
  506.     }
  507.     public function setLiveChat(?string $value): self
  508.     {
  509.         $this->liveChat $value;
  510.         return $this;
  511.     }
  512.     public function getLiveChat(): ?string
  513.     {
  514.         return $this->liveChat;
  515.     }
  516.     public function setWithdrawalTimesEwallets(?string $value): self
  517.     {
  518.         $this->withdrawalTimesEwallets $value;
  519.         return $this;
  520.     }
  521.     public function getWithdrawalTimesEwallets(): ?string
  522.     {
  523.         return $this->withdrawalTimesEwallets;
  524.     }
  525.     public function setWithdrawalTimesCreditDebitCards(?string $value): self
  526.     {
  527.         $this->withdrawalTimesCreditDebitCards $value;
  528.         return $this;
  529.     }
  530.     public function getWithdrawalTimesCreditDebitCards(): ?string
  531.     {
  532.         return $this->withdrawalTimesCreditDebitCards;
  533.     }
  534.     public function setWithdrawalTimesBankTransfers(?string $value): self
  535.     {
  536.         $this->withdrawalTimesBankTransfers $value;
  537.         return $this;
  538.     }
  539.     public function getWithdrawalTimesBankTransfers(): ?string
  540.     {
  541.         return $this->withdrawalTimesBankTransfers;
  542.     }
  543.     public function getWithdrawalTimesCheques(): ?string
  544.     {
  545.         return $this->withdrawalTimesCheques;
  546.     }
  547.     public function setWithdrawalTimesCheques(?string $value): self
  548.     {
  549.         $this->withdrawalTimesCheques $value;
  550.         return $this;
  551.     }
  552.     public function getWithdrawalTimesPendingTime(): ?string
  553.     {
  554.         return $this->withdrawalTimesPendingTime;
  555.     }
  556.     public function setWithdrawalTimesPendingTime(?string $value): self
  557.     {
  558.         $this->withdrawalTimesPendingTime $value;
  559.         return $this;
  560.     }
  561.     public function getContact(): ?string
  562.     {
  563.         return $this->contact;
  564.     }
  565.     public function setContact(?string $value): self
  566.     {
  567.         $this->contact $value;
  568.         return $this;
  569.     }
  570.     public function getTip(): ?string
  571.     {
  572.         return $this->tip;
  573.     }
  574.     public function setTip(?string $value): self
  575.     {
  576.         $this->tip $value;
  577.         return $this;
  578.     }
  579.     public function getEmail(): ?string
  580.     {
  581.         return $this->email;
  582.     }
  583.     public function setEmail(?string $value): self
  584.     {
  585.         $this->email $value;
  586.         return $this;
  587.     }
  588.     public function getTelephone(): ?string
  589.     {
  590.         return $this->telephone;
  591.     }
  592.     public function setTelephone(?string $value): self
  593.     {
  594.         $this->telephone $value;
  595.         return $this;
  596.     }
  597.     public function getWithdrawalLock(): ?string
  598.     {
  599.         return $this->withdrawalLock;
  600.     }
  601.     public function setWithdrawalLock(?string $value): self
  602.     {
  603.         $this->withdrawalLock $value;
  604.         return $this;
  605.     }
  606.     public function getSummary(): ?string
  607.     {
  608.         return $this->summary;
  609.     }
  610.     public function setSummary(?string $value): self
  611.     {
  612.         $this->summary $value;
  613.         return $this;
  614.     }
  615.     public function getPositiveReview(): ?string
  616.     {
  617.         return $this->positiveReview;
  618.     }
  619.     public function setPositiveReview(?string $value): self
  620.     {
  621.         $this->positiveReview $value;
  622.         return $this;
  623.     }
  624.     public function getNegativeReview(): ?string
  625.     {
  626.         return $this->negativeReview;
  627.     }
  628.     public function setNegativeReview(?string $value): self
  629.     {
  630.         $this->negativeReview $value;
  631.         return $this;
  632.     }
  633.     public function getSeoReport(): ?string
  634.     {
  635.         return $this->seoReport;
  636.     }
  637.     public function setSeoReport(?string $value): self
  638.     {
  639.         $this->seoReport $value;
  640.         return $this;
  641.     }
  642.     public function getDepositMin(): ?string
  643.     {
  644.         return $this->depositMin;
  645.     }
  646.     public function setDepositMin(?string $value): self
  647.     {
  648.         $this->depositMin $value;
  649.         return $this;
  650.     }
  651.     public function getWithdrawalMin(): ?string
  652.     {
  653.         return $this->withdrawalMin;
  654.     }
  655.     public function setWithdrawalMin(?string $value): self
  656.     {
  657.         $this->withdrawalMin $value;
  658.         return $this;
  659.     }
  660.     public function getDownloadAvailable(): ?string
  661.     {
  662.         return $this->downloadAvailable;
  663.     }
  664.     public function setDownloadAvailable(?string $value): self
  665.     {
  666.         $this->downloadAvailable $value;
  667.         return $this;
  668.     }
  669.     public function getSlotsScanned(): ?string
  670.     {
  671.         return $this->slotsScanned;
  672.     }
  673.     public function setSlotsScanned(?string $value): self
  674.     {
  675.         $this->slotsScanned $value;
  676.         return $this;
  677.     }
  678.     public function getCondition(): ?string
  679.     {
  680.         return $this->condition;
  681.     }
  682.     public function setCondition(?string $value): self
  683.     {
  684.         $this->condition $value;
  685.         return $this;
  686.     }
  687.     public function getSlotcatalogSlug(): ?string
  688.     {
  689.         return $this->slotcatalogSlug;
  690.     }
  691.     public function setSlotcatalogSlug(?string $value): self
  692.     {
  693.         $this->slotcatalogSlug $value;
  694.         return $this;
  695.     }
  696.     public function setSupportEmail(?string $supportEmail): self
  697.     {
  698.         $this->supportEmail $supportEmail;
  699.         return $this;
  700.     }
  701.     public function getSupportEmail(): ?string
  702.     {
  703.         return $this->supportEmail;
  704.     }
  705.     public function setSupportEmailReactionTime(?int $reactionTime): self
  706.     {
  707.         $this->supportEmailReactionTime $reactionTime;
  708.         return $this;
  709.     }
  710.     public function getSupportEmailReactionTime(): ?int
  711.     {
  712.         return $this->supportEmailReactionTime;
  713.     }
  714.     public function setSupportChat(?bool $supportChat): self
  715.     {
  716.         $this->supportChat $supportChat;
  717.         return $this;
  718.     }
  719.     public function getSupportChat(): ?bool
  720.     {
  721.         return $this->supportChat;
  722.     }
  723.     public function setSupportChatReactionTime(?int $time): self
  724.     {
  725.         $this->supportChatReactionTime $time;
  726.         return $this;
  727.     }
  728.     public function getSupportChatReactionTime(): ?int
  729.     {
  730.         return $this->supportChatReactionTime;
  731.     }
  732.     public function setSupportPhone(?string $supportPhone): self
  733.     {
  734.         $this->supportPhone $supportPhone;
  735.         return $this;
  736.     }
  737.     public function getSupportPhone(): ?string
  738.     {
  739.         return $this->supportPhone;
  740.     }
  741.     public function setSupportPhone24Per7(?bool $supportPhone24Per7): self
  742.     {
  743.         $this->supportPhone24Per7 $supportPhone24Per7;
  744.         return $this;
  745.     }
  746.     public function getSupportPhone24Per7(): ?bool
  747.     {
  748.         return $this->supportPhone24Per7;
  749.     }
  750.     public function setPageSpeedPc(?int $value): self
  751.     {
  752.         $this->pageSpeedPc $value;
  753.         return $this;
  754.     }
  755.     public function getPageSpeedPc(): ?int
  756.     {
  757.         return $this->pageSpeedPc;
  758.     }
  759.     public function setPageSpeedMobile(?int $value): self
  760.     {
  761.         $this->pageSpeedMobile $value;
  762.         return $this;
  763.     }
  764.     public function getPageSpeedMobile(): ?int
  765.     {
  766.         return $this->pageSpeedMobile;
  767.     }
  768.     public function setRatingAskgamblers(?float $value): self
  769.     {
  770.         $this->ratingAskgamblers $value;
  771.         return $this;
  772.     }
  773.     public function getRatingAskgamblers(): ?float
  774.     {
  775.         return $this->ratingAskgamblers;
  776.     }
  777.     public function setRatingCasinoOrg(?float $value): self
  778.     {
  779.         $this->ratingCasinoOrg $value;
  780.         return $this;
  781.     }
  782.     public function getRatingCasinoOrg(): ?float
  783.     {
  784.         return $this->ratingCasinoOrg;
  785.     }
  786.     public function setRatingCasinoGuru(?float $value): self
  787.     {
  788.         $this->ratingCasinoGuru $value;
  789.         return $this;
  790.     }
  791.     public function getRatingCasinoGuru(): ?float
  792.     {
  793.         return $this->ratingCasinoGuru;
  794.     }
  795.     public function setRatingKeyToCasinos(?float $value): self
  796.     {
  797.         $this->ratingKeyToCasinos $value;
  798.         return $this;
  799.     }
  800.     public function getRatingKeyToCasinos(): ?float
  801.     {
  802.         return $this->ratingKeyToCasinos;
  803.     }
  804.     public function setDepositMinInDollar(?int $value): self
  805.     {
  806.         $this->depositMinInDollar $value;
  807.         return $this;
  808.     }
  809.     public function getDepositMinInDollar(): ?int
  810.     {
  811.         return $this->depositMinInDollar;
  812.     }
  813.     public function setDepositMinInEuro(?int $value): self
  814.     {
  815.         $this->depositMinInEuro $value;
  816.         return $this;
  817.     }
  818.     public function getDepositMinInEuro(): ?int
  819.     {
  820.         return $this->depositMinInEuro;
  821.     }
  822.     /**
  823.      * @param int|null $value
  824.      * @return $this
  825.      */
  826.     public function setDepositMinInPound(?int $value): self
  827.     {
  828.         $this->depositMinInPound $value;
  829.         return $this;
  830.     }
  831.     /**
  832.      * @return int|null
  833.      */
  834.     public function getDepositMinInPound(): ?int
  835.     {
  836.         return $this->depositMinInPound;
  837.     }
  838.     /**
  839.      * @param string|null $value
  840.      * @return $this
  841.      */
  842.     public function setDepositMinInCrypto(?string $value): self
  843.     {
  844.         $this->depositMinInCrypto $value;
  845.         return $this;
  846.     }
  847.     /**
  848.      * @return string|null
  849.      */
  850.     public function getDepositMinInCrypto(): ?string
  851.     {
  852.         return $this->depositMinInCrypto;
  853.     }
  854.     /**
  855.      * @param int|null $value
  856.      * @return $this
  857.      */
  858.     public function setWithdrawalTimesPendingTimeMin(?int $value): self
  859.     {
  860.         $this->withdrawalTimesPendingTimeMin $value;
  861.         return $this;
  862.     }
  863.     /**
  864.      * @return int|null
  865.      */
  866.     public function getWithdrawalTimesPendingTimeMin(): ?int
  867.     {
  868.         return $this->withdrawalTimesPendingTimeMin;
  869.     }
  870.     /**
  871.      * @param int|null $value
  872.      * @return $this
  873.      */
  874.     public function setWithdrawalTimesPendingTimeMax(?int $value): self
  875.     {
  876.         $this->withdrawalTimesPendingTimeMax $value;
  877.         return $this;
  878.     }
  879.     /**
  880.      * @return int|null
  881.      */
  882.     public function getWithdrawalTimesPendingTimeMax(): ?int
  883.     {
  884.         return $this->withdrawalTimesPendingTimeMax;
  885.     }
  886.     /**
  887.      * @return string|null
  888.      */
  889.     public function getBonusLabel(): ?string
  890.     {
  891.         return $this->bonusLabel;
  892.     }
  893.     /**
  894.      * @param string|null $bonusLabel
  895.      * @return $this
  896.      */
  897.     public function setBonusLabel(?string $bonusLabel): self
  898.     {
  899.         $this->bonusLabel $bonusLabel;
  900.         return $this;
  901.     }
  902.     /**
  903.      * @return string|null
  904.      */
  905.     public function getVoonix(): ?string
  906.     {
  907.         return $this->voonix;
  908.     }
  909.     /**
  910.      * @param string|null $voonix
  911.      * @return $this
  912.      */
  913.     public function setVoonix(?string $voonix): self
  914.     {
  915.         $this->voonix $voonix;
  916.         return $this;
  917.     }
  918.     /**
  919.      * @param bool|null $inHouseSupportTeam
  920.      * @return $this
  921.      */
  922.     public function setInHouseSupportTeam(?bool $inHouseSupportTeam): self
  923.     {
  924.         $this->inHouseSupportTeam $inHouseSupportTeam;
  925.         return $this;
  926.     }
  927.     /**
  928.      * @return bool|null
  929.      */
  930.     public function getInHouseSupportTeam(): ?bool
  931.     {
  932.         return $this->inHouseSupportTeam;
  933.     }
  934.     /**
  935.      * @param bool|null $inHouseRetentionTeam
  936.      * @return $this
  937.      */
  938.     public function setInHouseRetentionTeam(?bool $inHouseRetentionTeam): self
  939.     {
  940.         $this->inHouseRetentionTeam $inHouseRetentionTeam;
  941.         return $this;
  942.     }
  943.     /**
  944.      * @return bool|null
  945.      */
  946.     public function getInHouseRetentionTeam(): ?bool
  947.     {
  948.         return $this->inHouseRetentionTeam;
  949.     }
  950.     /**
  951.      * @param string|null $casinoCardImage
  952.      * @return $this
  953.      */
  954.     public function setCasinoCardImage(?string $casinoCardImage): self
  955.     {
  956.         $this->casinoCardImage $casinoCardImage;
  957.         return $this;
  958.     }
  959.     /**
  960.      * @return string|null
  961.      */
  962.     public function getCasinoCardImage(): ?string
  963.     {
  964.         return $this->casinoCardImage;
  965.     }
  966.     /**
  967.      * @param string|null $casinoCardBackground
  968.      * @return $this
  969.      */
  970.     public function setCasinoCardBackground(?string $casinoCardBackground): self
  971.     {
  972.         $this->casinoCardBackground $casinoCardBackground;
  973.         return $this;
  974.     }
  975.     /**
  976.      * @return string|null
  977.      */
  978.     public function getCasinoCardBackground(): ?string
  979.     {
  980.         return $this->casinoCardBackground;
  981.     }
  982. }