app/Plugin/SlnPayment42/Entity/ConfigSubData.php line 27

Open in your IDE?
  1. <?php
  2. namespace Plugin\SlnPayment42\Entity;
  3. use Doctrine\Inflector\Inflector;
  4. use Doctrine\Inflector\NoopWordInflector;
  5. class ConfigSubData implements \ArrayAccess,\IteratorAggregate
  6. {
  7.     public function getIterator() {
  8.         return new ConfigSubData(get_object_vars($this));
  9.     }
  10.     
  11.     public function offsetExists($offset)
  12.     {
  13.         $inflector = new Inflector(new NoopWordInflector(), new NoopWordInflector());
  14.         $method $inflector->classify($offset);
  15.     
  16.         return method_exists($this"get$method") || method_exists($this"is$method");
  17.     }
  18.     
  19.     public function offsetSet($offset$value)
  20.     {
  21.         $this->{$offset} = $value;
  22.     }
  23.     
  24.     public function offsetGet($offset)
  25.     {
  26.         $inflector = new Inflector(new NoopWordInflector(), new NoopWordInflector());
  27.         $method $inflector->classify($offset);
  28.     
  29.         if (method_exists($this"get$method")) {
  30.             return $this->{"get$method"}();
  31.         } elseif (method_exists($this"is$method")) {
  32.             return $this->{"is$method"}();
  33.         }
  34.     }
  35.     
  36.     public function offsetUnset($offset)
  37.     {
  38.     }
  39.     
  40.     protected $MerchantId;
  41.     
  42.     protected $MerchantPass;
  43.     
  44.     protected $TenantId;
  45.     
  46.     protected $creditConnectionDestination;
  47.     protected $threedConnectionDestination;
  48.     protected $cvsConnectionDestination;
  49.     protected $creditConnectionPlace1;
  50.     
  51.     protected $creditConnectionPlace2;
  52.     
  53.     protected $creditConnectionPlace6;
  54.     
  55.     protected $tokenNinsyoCode;
  56.     
  57.     protected $creditConnectionPlace7;
  58.     
  59.     protected $creditAesKey;
  60.     
  61.     protected $creditAesIv;
  62.     
  63.     protected $payKbnKaisu;
  64.     
  65.     protected $SecCd;
  66.     
  67.     protected $attestationAssistance;
  68.     
  69.     protected $OperateId;
  70.     
  71.     protected $memberRegist;
  72.     
  73.     protected $quickAccounts;
  74.     protected $creditConnectionPlace5;
  75.     
  76.     protected $creditConnectionPlace3;
  77.     
  78.     protected $OnlinePaymentMethod;
  79.     
  80.     protected $Free1;
  81.     
  82.     protected $Free2;
  83.     
  84.     protected $Free3;
  85.     
  86.     protected $Free4;
  87.     
  88.     protected $Free5;
  89.     
  90.     protected $Free6;
  91.     
  92.     protected $Free7;
  93.     
  94.     protected $Comment;
  95.     
  96.     protected $Free8;
  97.     
  98.     protected $Free9;
  99.     
  100.     protected $Free10;
  101.     
  102.     protected $Free11;
  103.     
  104.     protected $Free12;
  105.     
  106.     protected $Free13;
  107.     
  108.     protected $Free14;
  109.     
  110.     protected $Free15;
  111.     
  112.     protected $Free16;
  113.     
  114.     protected $Free17;
  115.     
  116.     protected $Free18;
  117.     
  118.     protected $Free19;
  119.     
  120.     protected $Title;
  121.         
  122.     protected $cvsOrderMailId;
  123.     protected $isSendMail;
  124.     
  125.     protected $threedPay;
  126.     
  127.     protected $cardOrderPreEnd;
  128.     
  129.     public function ToSaveData()
  130.     {
  131.         return json_encode(get_object_vars($this));
  132.     }
  133.     
  134.     public function ToData($str
  135.     {
  136.         $configData json_decode($str1);
  137.         foreach ($configData as $key => $value) {
  138.             $this->{$key} = $value;
  139.         }
  140.     }
  141.     
  142.     public function getCvsOrderMailId()
  143.     {
  144.         return $this->cvsOrderMailId;
  145.     }
  146.     
  147.     public function setCvsOrderMailId($mailId)
  148.     {
  149.         $this->cvsOrderMailId $mailId;
  150.         return $this;
  151.     }
  152.     
  153.     public function getMerchantId()
  154.     {
  155.         return $this->MerchantId;
  156.     }
  157.     
  158.     public function setMerchantId($MerchantId)
  159.     {
  160.         $this->MerchantId $MerchantId;
  161.         return $this;
  162.     }
  163.     
  164.     public function getMerchantPass()
  165.     {
  166.         return $this->MerchantPass;
  167.     }
  168.     
  169.     public function setMerchantPass($MerchantPass)
  170.     {
  171.         $this->MerchantPass $MerchantPass;
  172.         return $this;
  173.     }
  174.     
  175.     public function getTenantId()
  176.     {
  177.         return $this->TenantId;
  178.     }
  179.     
  180.     public function setTenantId($TenantId)
  181.     {
  182.         $this->TenantId $TenantId;
  183.         return $this;
  184.     }
  185.     public function getCreditConnectionDestination()
  186.     {
  187.         return $this->creditConnectionDestination;
  188.     }
  189.     public function setCreditConnectionDestination($creditConnectionDestination)
  190.     {
  191.         $this->creditConnectionDestination $creditConnectionDestination;
  192.     }
  193.     public function getThreedConnectionDestination()
  194.     {
  195.         return $this->threedConnectionDestination;
  196.     }
  197.     public function setThreedConnectionDestination($threedConnectionDestination)
  198.     {
  199.         $this->threedConnectionDestination $threedConnectionDestination;
  200.     }
  201.     public function getCvsConnectionDestination()
  202.     {
  203.         return $this->cvsConnectionDestination;
  204.     }
  205.     public function setCvsConnectionDestination($cvsConnectionDestination)
  206.     {
  207.         $this->cvsConnectionDestination $cvsConnectionDestination;
  208.     }
  209.     
  210.     public function getCreditConnectionPlace1()
  211.     {
  212.         return $this->creditConnectionPlace1;
  213.     }
  214.     
  215.     public function setCreditConnectionPlace1($credit_connection_place1)
  216.     {
  217.         $this->creditConnectionPlace1 $credit_connection_place1;
  218.         return $this;
  219.     }
  220.     public function getCreditConnectionPlace2()
  221.     {
  222.         return $this->creditConnectionPlace2;
  223.     }
  224.     
  225.     public function setCreditConnectionPlace2($credit_connection_place2)
  226.     {
  227.         $this->creditConnectionPlace2 $credit_connection_place2;
  228.         return $this;
  229.     }
  230.     
  231.     public function getCreditConnectionPlace6()
  232.     {
  233.         return $this->creditConnectionPlace6;
  234.     }
  235.     
  236.     public function setCreditConnectionPlace6($creditConnectionPlace6)
  237.     {
  238.         $this->creditConnectionPlace6 $creditConnectionPlace6;
  239.         return $this;
  240.     }
  241.     
  242.     public function getTokenNinsyoCode()
  243.     {
  244.         return $this->tokenNinsyoCode;
  245.     }
  246.     
  247.     public function setTokenNinsyoCode($tokenNinsyoCode)
  248.     {
  249.         $this->tokenNinsyoCode $tokenNinsyoCode;
  250.         return $this;
  251.     }
  252.     
  253.     public function getPayKbnKaisu()
  254.     {
  255.         return $this->payKbnKaisu;
  256.     }
  257.     
  258.     public function setPayKbnKaisu($payKbnKaisu)
  259.     {
  260.         $this->payKbnKaisu $payKbnKaisu;
  261.         return $this;
  262.     }
  263.     
  264.     public function getSecCd()
  265.     {
  266.         return $this->SecCd;
  267.     }
  268.     
  269.     public function setSecCd($SecCd)
  270.     {
  271.         $this->SecCd $SecCd;
  272.         return $this;
  273.     }
  274.     
  275.     public function getAttestationAssistance()
  276.     {
  277.         return $this->attestationAssistance;
  278.     }
  279.     
  280.     public function setAttestationAssistance($attestation_assistance)
  281.     {
  282.         $this->attestationAssistance $attestation_assistance;
  283.         return $this;
  284.     }
  285.     
  286.     public function getOperateId()
  287.     {
  288.         return $this->OperateId;
  289.     }
  290.     
  291.     public function setOperateId($OperateId)
  292.     {
  293.         $this->OperateId $OperateId;
  294.         return $this;
  295.     }
  296.     
  297.     public function getMemberRegist()
  298.     {
  299.         return $this->memberRegist;
  300.     }
  301.     
  302.     public function setMemberRegist($member_regist)
  303.     {
  304.         $this->memberRegist $member_regist;
  305.         return $this;
  306.     }
  307.     
  308.     public function getQuickAccounts()
  309.     {
  310.         return $this->quickAccounts;
  311.     }
  312.     
  313.     public function setQuickAccounts($quick_accounts)
  314.     {
  315.         $this->quickAccounts $quick_accounts;
  316.         return $this;
  317.     }
  318.     
  319.     public function getCreditConnectionPlace5()
  320.     {
  321.         return $this->creditConnectionPlace5;
  322.     }
  323.     
  324.     public function setCreditConnectionPlace5($credit_connection_place5)
  325.     {
  326.         $this->creditConnectionPlace5 $credit_connection_place5;
  327.         return $this;
  328.     }
  329.     
  330.     public function getCreditConnectionPlace3()
  331.     {
  332.         return $this->creditConnectionPlace3;
  333.     }
  334.     
  335.     public function setCreditConnectionPlace3($credit_connection_place3)
  336.     {
  337.         $this->creditConnectionPlace3 $credit_connection_place3;
  338.         return $this;
  339.     }
  340.     
  341.     public function getOnlinePaymentMethod()
  342.     {
  343.         return $this->OnlinePaymentMethod;
  344.     }
  345.     
  346.     public function setOnlinePaymentMethod($OnlinePaymentMethod)
  347.     {
  348.         $this->OnlinePaymentMethod $OnlinePaymentMethod;
  349.         return $this;
  350.     }
  351.     
  352.     public function getFree1()
  353.     {
  354.         return $this->Free1;
  355.     }
  356.     
  357.     public function setFree1($Free1)
  358.     {
  359.         $this->Free1 $Free1;
  360.         return $this;
  361.     }
  362.     
  363.     public function getFree2()
  364.     {
  365.         return $this->Free2;
  366.     }
  367.     
  368.     public function setFree2($Free2)
  369.     {
  370.         $this->Free2 $Free2;
  371.         return $this;
  372.     }
  373.     
  374.     public function getFree3()
  375.     {
  376.         return $this->Free3;
  377.     }
  378.     
  379.     public function setFree3($Free3)
  380.     {
  381.         $this->Free3 $Free3;
  382.         return $this;
  383.     }
  384.     
  385.     public function getFree4()
  386.     {
  387.         return $this->Free4;
  388.     }
  389.     
  390.     public function setFree4($Free4)
  391.     {
  392.         $this->Free4 $Free4;
  393.         return $this;
  394.     }
  395.     
  396.     public function getFree5()
  397.     {
  398.         return $this->Free5;
  399.     }
  400.     
  401.     public function setFree5($Free5)
  402.     {
  403.         $this->Free5 $Free5;
  404.         return $this;
  405.     }
  406.     
  407.     public function getFree6()
  408.     {
  409.         return $this->Free6;
  410.     }
  411.     
  412.     public function setFree6($Free6)
  413.     {
  414.         $this->Free6 $Free6;
  415.         return $this;
  416.     }
  417.     
  418.     public function getFree7()
  419.     {
  420.         return $this->Free7;
  421.     }
  422.     
  423.     public function setFree7($Free7)
  424.     {
  425.         $this->Free7 $Free7;
  426.         return $this;
  427.     }
  428.     
  429.     public function getComment()
  430.     {
  431.         return $this->Comment;
  432.     }
  433.     
  434.     public function setComment($Comment)
  435.     {
  436.         $this->Comment $Comment;
  437.         return $this;
  438.     }
  439.     
  440.     public function getFree8()
  441.     {
  442.         return $this->Free8;
  443.     }
  444.     
  445.     public function setFree8($Free8)
  446.     {
  447.         $this->Free8 $Free8;
  448.         return $this;
  449.     }
  450.     
  451.     public function getFree9()
  452.     {
  453.         return $this->Free9;
  454.     }
  455.     
  456.     public function setFree9($Free9)
  457.     {
  458.         $this->Free9 $Free9;
  459.         return $this;
  460.     }
  461.     
  462.     public function getFree10()
  463.     {
  464.         return $this->Free10;
  465.     }
  466.     
  467.     public function setFree10($Free10)
  468.     {
  469.         $this->Free10 $Free10;
  470.         return $this;
  471.     }
  472.     
  473.     public function getFree11()
  474.     {
  475.         return $this->Free11;
  476.     }
  477.     
  478.     public function setFree11($Free11)
  479.     {
  480.         $this->Free11 $Free11;
  481.         return $this;
  482.     }
  483.     
  484.     public function getFree12()
  485.     {
  486.         return $this->Free12;
  487.     }
  488.     
  489.     public function setFree12($Free12)
  490.     {
  491.         $this->Free12 $Free12;
  492.         return $this;
  493.     }
  494.     
  495.     public function getFree13()
  496.     {
  497.         return $this->Free13;
  498.     }
  499.     
  500.     public function setFree13($Free13)
  501.     {
  502.         $this->Free13 $Free13;
  503.         return $this;
  504.     }
  505.     
  506.     public function getFree14()
  507.     {
  508.         return $this->Free14;
  509.     }
  510.     
  511.     public function setFree14($Free14)
  512.     {
  513.         $this->Free14 $Free14;
  514.         return $this;
  515.     }
  516.     
  517.     public function getFree15()
  518.     {
  519.         return $this->Free15;
  520.     }
  521.     
  522.     public function setFree15($Free15)
  523.     {
  524.         $this->Free15 $Free15;
  525.         return $this;
  526.     }
  527.     
  528.     public function getFree16()
  529.     {
  530.         return $this->Free16;
  531.     }
  532.     
  533.     public function setFree16($Free16)
  534.     {
  535.         $this->Free16 $Free16;
  536.         return $this;
  537.     }
  538.     
  539.     public function getFree17()
  540.     {
  541.         return $this->Free17;
  542.     }
  543.     
  544.     public function setFree17($Free17)
  545.     {
  546.         $this->Free17 $Free17;
  547.         return $this;
  548.     }
  549.     
  550.     public function getFree18()
  551.     {
  552.         return $this->Free18;
  553.     }
  554.     
  555.     public function setFree18($Free18)
  556.     {
  557.         $this->Free18 $Free18;
  558.         return $this;
  559.     }
  560.     
  561.     public function getFree19()
  562.     {
  563.         return $this->Free19;
  564.     }
  565.     
  566.     public function setFree19($Free19)
  567.     {
  568.         $this->Free19 $Free19;
  569.         return $this;
  570.     }
  571.     
  572.     public function getTitle()
  573.     {
  574.         return $this->Title;
  575.     }
  576.     
  577.     public function setTitle($Title)
  578.     {
  579.         $this->Title $Title;
  580.         return $this;
  581.     }
  582.     
  583.     public function getIsSendMail()
  584.     {
  585.         return $this->isSendMail;
  586.     }
  587.     
  588.     public function setIsSendMail($isSendMail)
  589.     {
  590.         $this->isSendMail $isSendMail;
  591.         return $this;
  592.     }
  593.     
  594.     public function getCreditConnectionPlace7()
  595.     {
  596.         return $this->creditConnectionPlace7;
  597.     }
  598.     public function getCreditAesKey()
  599.     {
  600.         return $this->creditAesKey;
  601.     }
  602.     public function getCreditAesIv()
  603.     {
  604.         return $this->creditAesIv;
  605.     }
  606.     public function setCreditConnectionPlace7($creditConnectionPlace7)
  607.     {
  608.         $this->creditConnectionPlace7 $creditConnectionPlace7;
  609.         return $this;
  610.     }
  611.     public function setCreditAesKey($creditAesKey)
  612.     {
  613.         $this->creditAesKey $creditAesKey;
  614.         return $this;
  615.     }
  616.     public function setCreditAesIv($creditAesIv)
  617.     {
  618.         $this->creditAesIv $creditAesIv;
  619.         return $this;
  620.     }
  621.     public function setThreedPay($threedPay)
  622.     {
  623.         $this->threedPay $threedPay;
  624.         return $this;
  625.     }
  626.     
  627.     public function getThreedPay()
  628.     {
  629.         return $this->threedPay;
  630.     }
  631.     
  632.     public function setCardOrderPreEnd($cardOrderPreEnd)
  633.     {
  634.         $this->cardOrderPreEnd $cardOrderPreEnd;
  635.         return $this;
  636.     }
  637.     
  638.     public function getCardOrderPreEnd()
  639.     {
  640.         return $this->cardOrderPreEnd;
  641.     }
  642. }