src/Entity/ParametreCentreAdmin.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ParametreCentreAdminRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ParametreCentreAdminRepository::class)
  7.  */
  8. class ParametreCentreAdmin
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="boolean", nullable=true)
  18.      */
  19.     private $pca_calendrier_remplir_trou;
  20.     /**
  21.      * @ORM\Column(type="boolean", nullable=true)
  22.      */
  23.     private $pca_auto_complete_client_vl;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $pca_pyl_merchant_id;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $pca_pyl_access_key;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $pca_pyl_contract_number;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $pca_pyl_environment;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private $pca_pyl_cancel_url;
  44.     /**
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private $pca_pyl_notification_url;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $pca_pyl_return_url;
  52.     /**
  53.      * @ORM\Column(type="integer", nullable=true)
  54.      */
  55.     private $pca_pyl_recurring_billing_cycle;
  56.     /**
  57.      * @ORM\Column(type="string", length=255, nullable=true)
  58.      */
  59.     private $pca_pyl_ws_version;
  60.     /**
  61.      * @ORM\Column(type="integer", nullable=true)
  62.      */
  63.     private $pca_pyl_payment_currency;
  64.     /**
  65.      * @ORM\Column(type="integer", nullable=true)
  66.      */
  67.     private $pca_pyl_order_currency;
  68.     /**
  69.      * @ORM\Column(type="string", length=255, nullable=true)
  70.      */
  71.     private $pca_pyl_security_mode;
  72.     /**
  73.      * @ORM\Column(type="string", length=255, nullable=true)
  74.      */
  75.     private $pca_pyl_language_code;
  76.     /**
  77.      * @ORM\Column(type="integer", nullable=true)
  78.      */
  79.     private $pca_pyl_payment_action;
  80.     /**
  81.      * @ORM\Column(type="string", length=255, nullable=true)
  82.      */
  83.     private $pca_pyl_payment_mode;
  84.     /**
  85.      * @ORM\Column(type="string", length=255, nullable=true)
  86.      */
  87.     private $pca_pyl_custom_payment_template_url;
  88.     /**
  89.      * @ORM\Column(type="string", length=255, nullable=true)
  90.      */
  91.     private $pca_pyl_custom_payment_page_code;
  92.     /**
  93.      * @ORM\Column(type="string", length=255, nullable=true)
  94.      */
  95.     private $pca_pyl_contract_number_list;
  96.     /**
  97.      * @ORM\Column(type="string", length=255, nullable=true)
  98.      */
  99.     private $pca_pyl_acces_key_ref;
  100.     /**
  101.      * @ORM\Column(type="string", length=255, nullable=true)
  102.      */
  103.     private $pca_pyl_proxy_host;
  104.     /**
  105.      * @ORM\Column(type="string", length=255, nullable=true)
  106.      */
  107.     private $pca_pyl_proxy_port;
  108.     /**
  109.      * @ORM\Column(type="string", length=255, nullable=true)
  110.      */
  111.     private $pca_pyl_proxy_login;
  112.     /**
  113.      * @ORM\Column(type="string", length=255, nullable=true)
  114.      */
  115.     private $pca_pyl_proxy_password;
  116.     /**
  117.      * @ORM\Column(type="boolean", nullable=true)
  118.      */
  119.     private $pca_pyl_pym_opt_deux_fois;
  120.     /**
  121.      * @ORM\Column(type="float", nullable=true)
  122.      */
  123.     private $pca_pyl_pym_opt_assurance_cv;
  124.     /**
  125.      * @ORM\Column(type="boolean", nullable=true)
  126.      */
  127.     private $pca_pyl_pym_opt_rdv_modifiable;
  128.     /**
  129.      * @ORM\Column(type="integer", nullable=true)
  130.      */
  131.     private $pca_duree_promo;
  132.     /**
  133.      * @ORM\Column(type="boolean", nullable=true)
  134.      */
  135.     private $pca_actif;
  136.     /**
  137.      * @ORM\Column(type="integer", nullable=true)
  138.      */
  139.     private $pca_iban_lemonway;
  140.     /**
  141.      * @ORM\OneToOne(targetEntity=Centre::class, mappedBy="ctr_parametre_centre_admin", cascade={"persist", "remove"})
  142.      */
  143.     private $centre;
  144.     public function getId(): ?int
  145.     {
  146.         return $this->id;
  147.     }
  148.     public function isPcaCalendrierRemplirTrou(): ?bool
  149.     {
  150.         return $this->pca_calendrier_remplir_trou;
  151.     }
  152.     public function setPcaCalendrierRemplirTrou(bool $pca_calendrier_remplir_trou): self
  153.     {
  154.         $this->pca_calendrier_remplir_trou $pca_calendrier_remplir_trou;
  155.         return $this;
  156.     }
  157.     public function isPcaAutoCompleteClientVl(): ?bool
  158.     {
  159.         return $this->pca_auto_complete_client_vl;
  160.     }
  161.     public function setPcaAutoCompleteClientVl(bool $pca_auto_complete_client_vl): self
  162.     {
  163.         $this->pca_auto_complete_client_vl $pca_auto_complete_client_vl;
  164.         return $this;
  165.     }
  166.     public function getPcaPylMerchantId(): ?string
  167.     {
  168.         return $this->pca_pyl_merchant_id;
  169.     }
  170.     public function setPcaPylMerchantId(string $pca_pyl_merchant_id): self
  171.     {
  172.         $this->pca_pyl_merchant_id $pca_pyl_merchant_id;
  173.         return $this;
  174.     }
  175.     public function getPcaPylAccessKey(): ?string
  176.     {
  177.         return $this->pca_pyl_access_key;
  178.     }
  179.     public function setPcaPylAccessKey(string $pca_pyl_access_key): self
  180.     {
  181.         $this->pca_pyl_access_key $pca_pyl_access_key;
  182.         return $this;
  183.     }
  184.     public function getPcaPylContractNumber(): ?string
  185.     {
  186.         return $this->pca_pyl_contract_number;
  187.     }
  188.     public function setPcaPylContractNumber(string $pca_pyl_contract_number): self
  189.     {
  190.         $this->pca_pyl_contract_number $pca_pyl_contract_number;
  191.         return $this;
  192.     }
  193.     public function getPcaPylEnvironment(): ?string
  194.     {
  195.         return $this->pca_pyl_environment;
  196.     }
  197.     public function setPcaPylEnvironment(string $pca_pyl_environment): self
  198.     {
  199.         $this->pca_pyl_environment $pca_pyl_environment;
  200.         return $this;
  201.     }
  202.     public function getPcaPylCancelUrl(): ?string
  203.     {
  204.         return $this->pca_pyl_cancel_url;
  205.     }
  206.     public function setPcaPylCancelUrl(string $pca_pyl_cancel_url): self
  207.     {
  208.         $this->pca_pyl_cancel_url $pca_pyl_cancel_url;
  209.         return $this;
  210.     }
  211.     public function getPcaPylNotificationUrl(): ?string
  212.     {
  213.         return $this->pca_pyl_notification_url;
  214.     }
  215.     public function setPcaPylNotificationUrl(string $pca_pyl_notification_url): self
  216.     {
  217.         $this->pca_pyl_notification_url $pca_pyl_notification_url;
  218.         return $this;
  219.     }
  220.     public function getPcaPylReturnUrl(): ?string
  221.     {
  222.         return $this->pca_pyl_return_url;
  223.     }
  224.     public function setPcaPylReturnUrl(string $pca_pyl_return_url): self
  225.     {
  226.         $this->pca_pyl_return_url $pca_pyl_return_url;
  227.         return $this;
  228.     }
  229.     public function getPcaPylRecurringBillingCycle(): ?int
  230.     {
  231.         return $this->pca_pyl_recurring_billing_cycle;
  232.     }
  233.     public function setPcaPylRecurringBillingCycle(int $pca_pyl_recurring_billing_cycle): self
  234.     {
  235.         $this->pca_pyl_recurring_billing_cycle $pca_pyl_recurring_billing_cycle;
  236.         return $this;
  237.     }
  238.     public function getPcaPylWsVersion(): ?string
  239.     {
  240.         return $this->pca_pyl_ws_version;
  241.     }
  242.     public function setPcaPylWsVersion(string $pca_pyl_ws_version): self
  243.     {
  244.         $this->pca_pyl_ws_version $pca_pyl_ws_version;
  245.         return $this;
  246.     }
  247.     public function getPcaPylPaymentCurrency(): ?int
  248.     {
  249.         return $this->pca_pyl_payment_currency;
  250.     }
  251.     public function setPcaPylPaymentCurrency(int $pca_pyl_payment_currency): self
  252.     {
  253.         $this->pca_pyl_payment_currency $pca_pyl_payment_currency;
  254.         return $this;
  255.     }
  256.     public function getPcaPylOrderCurrency(): ?int
  257.     {
  258.         return $this->pca_pyl_order_currency;
  259.     }
  260.     public function setPcaPylOrderCurrency(int $pca_pyl_order_currency): self
  261.     {
  262.         $this->pca_pyl_order_currency $pca_pyl_order_currency;
  263.         return $this;
  264.     }
  265.     public function getPcaPylSecurityMode(): ?string
  266.     {
  267.         return $this->pca_pyl_security_mode;
  268.     }
  269.     public function setPcaPylSecurityMode(string $pca_pyl_security_mode): self
  270.     {
  271.         $this->pca_pyl_security_mode $pca_pyl_security_mode;
  272.         return $this;
  273.     }
  274.     public function getPcaPylLanguageCode(): ?string
  275.     {
  276.         return $this->pca_pyl_language_code;
  277.     }
  278.     public function setPcaPylLanguageCode(string $pca_pyl_language_code): self
  279.     {
  280.         $this->pca_pyl_language_code $pca_pyl_language_code;
  281.         return $this;
  282.     }
  283.     public function getPcaPylPaymentAction(): ?int
  284.     {
  285.         return $this->pca_pyl_payment_action;
  286.     }
  287.     public function setPcaPylPaymentAction(int $pca_pyl_payment_action): self
  288.     {
  289.         $this->pca_pyl_payment_action $pca_pyl_payment_action;
  290.         return $this;
  291.     }
  292.     public function getPcaPylPaymentMode(): ?string
  293.     {
  294.         return $this->pca_pyl_payment_mode;
  295.     }
  296.     public function setPcaPylPaymentMode(string $pca_pyl_payment_mode): self
  297.     {
  298.         $this->pca_pyl_payment_mode $pca_pyl_payment_mode;
  299.         return $this;
  300.     }
  301.     public function getPcaPylCustomPaymentTemplateUrl(): ?string
  302.     {
  303.         return $this->pca_pyl_custom_payment_template_url;
  304.     }
  305.     public function setPcaPylCustomPaymentTemplateUrl(?string $pca_pyl_custom_payment_template_url): self
  306.     {
  307.         $this->pca_pyl_custom_payment_template_url $pca_pyl_custom_payment_template_url;
  308.         return $this;
  309.     }
  310.     public function getPcaPylCustomPaymentPageCode(): ?string
  311.     {
  312.         return $this->pca_pyl_custom_payment_page_code;
  313.     }
  314.     public function setPcaPylCustomPaymentPageCode(?string $pca_pyl_custom_payment_page_code): self
  315.     {
  316.         $this->pca_pyl_custom_payment_page_code $pca_pyl_custom_payment_page_code;
  317.         return $this;
  318.     }
  319.     public function getPcaPylContractNumberList(): ?string
  320.     {
  321.         return $this->pca_pyl_contract_number_list;
  322.     }
  323.     public function setPcaPylContractNumberList(?string $pca_pyl_contract_number_list): self
  324.     {
  325.         $this->pca_pyl_contract_number_list $pca_pyl_contract_number_list;
  326.         return $this;
  327.     }
  328.     public function getPcaPylAccesKeyRef(): ?string
  329.     {
  330.         return $this->pca_pyl_acces_key_ref;
  331.     }
  332.     public function setPcaPylAccesKeyRef(?string $pca_pyl_acces_key_ref): self
  333.     {
  334.         $this->pca_pyl_acces_key_ref $pca_pyl_acces_key_ref;
  335.         return $this;
  336.     }
  337.     public function getPcaPylProxyHost(): ?string
  338.     {
  339.         return $this->pca_pyl_proxy_host;
  340.     }
  341.     public function setPcaPylProxyHost(?string $pca_pyl_proxy_host): self
  342.     {
  343.         $this->pca_pyl_proxy_host $pca_pyl_proxy_host;
  344.         return $this;
  345.     }
  346.     public function getPcaPylProxyPort(): ?string
  347.     {
  348.         return $this->pca_pyl_proxy_port;
  349.     }
  350.     public function setPcaPylProxyPort(?string $pca_pyl_proxy_port): self
  351.     {
  352.         $this->pca_pyl_proxy_port $pca_pyl_proxy_port;
  353.         return $this;
  354.     }
  355.     public function getPcaPylProxyLogin(): ?string
  356.     {
  357.         return $this->pca_pyl_proxy_login;
  358.     }
  359.     public function setPcaPylProxyLogin(?string $pca_pyl_proxy_login): self
  360.     {
  361.         $this->pca_pyl_proxy_login $pca_pyl_proxy_login;
  362.         return $this;
  363.     }
  364.     public function getPcaPylProxyPassword(): ?string
  365.     {
  366.         return $this->pca_pyl_proxy_password;
  367.     }
  368.     public function setPcaPylProxyPassword(?string $pca_pyl_proxy_password): self
  369.     {
  370.         $this->pca_pyl_proxy_password $pca_pyl_proxy_password;
  371.         return $this;
  372.     }
  373.     public function isPcaPylPymOptDeuxFois(): ?bool
  374.     {
  375.         return $this->pca_pyl_pym_opt_deux_fois;
  376.     }
  377.     public function setPcaPylPymOptDeuxFois(bool $pca_pyl_pym_opt_deux_fois): self
  378.     {
  379.         $this->pca_pyl_pym_opt_deux_fois $pca_pyl_pym_opt_deux_fois;
  380.         return $this;
  381.     }
  382.     public function getPcaPylPymOptAssuranceCv(): ?float
  383.     {
  384.         return $this->pca_pyl_pym_opt_assurance_cv;
  385.     }
  386.     public function setPcaPylPymOptAssuranceCv(float $pca_pyl_pym_opt_assurance_cv): self
  387.     {
  388.         $this->pca_pyl_pym_opt_assurance_cv $pca_pyl_pym_opt_assurance_cv;
  389.         return $this;
  390.     }
  391.     public function isPcaPylPymOptRdvModifiable(): ?bool
  392.     {
  393.         return $this->pca_pyl_pym_opt_rdv_modifiable;
  394.     }
  395.     public function setPcaPylPymOptRdvModifiable(bool $pca_pyl_pym_opt_rdv_modifiable): self
  396.     {
  397.         $this->pca_pyl_pym_opt_rdv_modifiable $pca_pyl_pym_opt_rdv_modifiable;
  398.         return $this;
  399.     }
  400.     public function getPcaDureePromo(): ?int
  401.     {
  402.         return $this->pca_duree_promo;
  403.     }
  404.     public function setPcaDureePromo(int $pca_duree_promo): self
  405.     {
  406.         $this->pca_duree_promo $pca_duree_promo;
  407.         return $this;
  408.     }
  409.     public function isPcaActif(): ?bool
  410.     {
  411.         return $this->pca_actif;
  412.     }
  413.     public function setPcaActif(bool $pca_actif): self
  414.     {
  415.         $this->pca_actif $pca_actif;
  416.         return $this;
  417.     }
  418.     public function getPcaIbanLemonway(): ?int
  419.     {
  420.         return $this->pca_iban_lemonway;
  421.     }
  422.     public function setPcaIbanLemonway(?int $pca_iban_lemonway): self
  423.     {
  424.         $this->pca_iban_lemonway $pca_iban_lemonway;
  425.         return $this;
  426.     }
  427.     public function getCentre(): ?Centre
  428.     {
  429.         return $this->centre;
  430.     }
  431.     public function setCentre(Centre $centre): self
  432.     {
  433.         // set the owning side of the relation if necessary
  434.         if ($centre->getCtrParametreCentreAdmin() !== $this) {
  435.             $centre->setCtrParametreCentreAdmin($this);
  436.         }
  437.         $this->centre $centre;
  438.         return $this;
  439.     }
  440. }