vendor/shopware/core/Checkout/Payment/PaymentMethodEntity.php line 19

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Checkout\Payment;
  3. use Shopware\Core\Checkout\Customer\CustomerCollection;
  4. use Shopware\Core\Checkout\Order\Aggregate\OrderTransaction\OrderTransactionCollection;
  5. use Shopware\Core\Checkout\Payment\Aggregate\PaymentMethodTranslation\PaymentMethodTranslationCollection;
  6. use Shopware\Core\Content\Media\MediaEntity;
  7. use Shopware\Core\Content\Rule\RuleEntity;
  8. use Shopware\Core\Framework\App\Aggregate\AppPaymentMethod\AppPaymentMethodEntity;
  9. use Shopware\Core\Framework\DataAbstractionLayer\Entity;
  10. use Shopware\Core\Framework\DataAbstractionLayer\EntityCustomFieldsTrait;
  11. use Shopware\Core\Framework\DataAbstractionLayer\EntityIdTrait;
  12. use Shopware\Core\Framework\Log\Package;
  13. use Shopware\Core\Framework\Plugin\PluginEntity;
  14. use Shopware\Core\System\SalesChannel\SalesChannelCollection;
  15. #[Package('checkout')]
  16. class PaymentMethodEntity extends Entity
  17. {
  18.     use EntityIdTrait;
  19.     use EntityCustomFieldsTrait;
  20.     /**
  21.      * @var string|null
  22.      */
  23.     protected $pluginId;
  24.     /**
  25.      * @var string
  26.      */
  27.     protected $handlerIdentifier;
  28.     /**
  29.      * @var string|null
  30.      */
  31.     protected $name;
  32.     /**
  33.      * @var string|null
  34.      */
  35.     protected $distinguishableName;
  36.     /**
  37.      * @var string|null
  38.      */
  39.     protected $description;
  40.     /**
  41.      * @var int
  42.      */
  43.     protected $position;
  44.     /**
  45.      * @var bool
  46.      */
  47.     protected $active;
  48.     /**
  49.      * @var bool
  50.      */
  51.     protected $afterOrderEnabled;
  52.     /**
  53.      * @var PluginEntity|null
  54.      */
  55.     protected $plugin;
  56.     /**
  57.      * @var PaymentMethodTranslationCollection|null
  58.      */
  59.     protected $translations;
  60.     /**
  61.      * @var OrderTransactionCollection|null
  62.      */
  63.     protected $orderTransactions;
  64.     /**
  65.      * @var CustomerCollection|null
  66.      */
  67.     protected $customers;
  68.     /**
  69.      * @var SalesChannelCollection|null
  70.      */
  71.     protected $salesChannelDefaultAssignments;
  72.     /**
  73.      * @var SalesChannelCollection|null
  74.      */
  75.     protected $salesChannels;
  76.     /**
  77.      * @var RuleEntity|null
  78.      */
  79.     protected $availabilityRule;
  80.     /**
  81.      * @var string|null
  82.      */
  83.     protected $availabilityRuleId;
  84.     /**
  85.      * @var string|null
  86.      */
  87.     protected $mediaId;
  88.     /**
  89.      * @var MediaEntity|null
  90.      */
  91.     protected $media;
  92.     /**
  93.      * @var string
  94.      */
  95.     protected $formattedHandlerIdentifier;
  96.     /**
  97.      * @var string|null
  98.      */
  99.     protected $shortName;
  100.     /**
  101.      * @var AppPaymentMethodEntity|null
  102.      */
  103.     protected $appPaymentMethod;
  104.     protected bool $synchronous false;
  105.     protected bool $asynchronous false;
  106.     protected bool $prepared false;
  107.     protected bool $refundable false;
  108.     public function getPluginId(): ?string
  109.     {
  110.         return $this->pluginId;
  111.     }
  112.     public function setPluginId(?string $pluginId): void
  113.     {
  114.         $this->pluginId $pluginId;
  115.     }
  116.     public function getHandlerIdentifier(): string
  117.     {
  118.         return $this->handlerIdentifier;
  119.     }
  120.     public function setHandlerIdentifier(string $handlerIdentifier): void
  121.     {
  122.         $this->handlerIdentifier $handlerIdentifier;
  123.     }
  124.     public function setFormattedHandlerIdentifier(string $formattedHandlerIdentifier): void
  125.     {
  126.         $this->formattedHandlerIdentifier $formattedHandlerIdentifier;
  127.     }
  128.     public function getFormattedHandlerIdentifier(): string
  129.     {
  130.         return $this->formattedHandlerIdentifier;
  131.     }
  132.     public function getName(): ?string
  133.     {
  134.         return $this->name;
  135.     }
  136.     public function setName(string $name): void
  137.     {
  138.         $this->name $name;
  139.     }
  140.     public function getDistinguishableName(): ?string
  141.     {
  142.         return $this->distinguishableName;
  143.     }
  144.     public function setDistinguishableName(?string $distinguishableName): void
  145.     {
  146.         $this->distinguishableName $distinguishableName;
  147.     }
  148.     public function getDescription(): ?string
  149.     {
  150.         return $this->description;
  151.     }
  152.     public function setDescription(?string $description): void
  153.     {
  154.         $this->description $description;
  155.     }
  156.     public function getPosition(): int
  157.     {
  158.         return $this->position;
  159.     }
  160.     public function setPosition(int $position): void
  161.     {
  162.         $this->position $position;
  163.     }
  164.     public function getActive(): bool
  165.     {
  166.         return $this->active;
  167.     }
  168.     public function setActive(bool $active): void
  169.     {
  170.         $this->active $active;
  171.     }
  172.     public function getPlugin(): ?PluginEntity
  173.     {
  174.         return $this->plugin;
  175.     }
  176.     public function setPlugin(PluginEntity $plugin): void
  177.     {
  178.         $this->plugin $plugin;
  179.     }
  180.     public function getTranslations(): ?PaymentMethodTranslationCollection
  181.     {
  182.         return $this->translations;
  183.     }
  184.     public function setTranslations(PaymentMethodTranslationCollection $translations): void
  185.     {
  186.         $this->translations $translations;
  187.     }
  188.     public function getOrderTransactions(): ?OrderTransactionCollection
  189.     {
  190.         return $this->orderTransactions;
  191.     }
  192.     public function setOrderTransactions(OrderTransactionCollection $orderTransactions): void
  193.     {
  194.         $this->orderTransactions $orderTransactions;
  195.     }
  196.     public function getCustomers(): ?CustomerCollection
  197.     {
  198.         return $this->customers;
  199.     }
  200.     public function setCustomers(CustomerCollection $customers): void
  201.     {
  202.         $this->customers $customers;
  203.     }
  204.     public function getSalesChannelDefaultAssignments(): ?SalesChannelCollection
  205.     {
  206.         return $this->salesChannelDefaultAssignments;
  207.     }
  208.     public function setSalesChannelDefaultAssignments(SalesChannelCollection $salesChannelDefaultAssignments): void
  209.     {
  210.         $this->salesChannelDefaultAssignments $salesChannelDefaultAssignments;
  211.     }
  212.     public function getSalesChannels(): ?SalesChannelCollection
  213.     {
  214.         return $this->salesChannels;
  215.     }
  216.     public function setSalesChannels(SalesChannelCollection $salesChannels): void
  217.     {
  218.         $this->salesChannels $salesChannels;
  219.     }
  220.     public function getAvailabilityRule(): ?RuleEntity
  221.     {
  222.         return $this->availabilityRule;
  223.     }
  224.     public function setAvailabilityRule(?RuleEntity $availabilityRule): void
  225.     {
  226.         $this->availabilityRule $availabilityRule;
  227.     }
  228.     public function getAvailabilityRuleId(): ?string
  229.     {
  230.         return $this->availabilityRuleId;
  231.     }
  232.     public function setAvailabilityRuleId(?string $availabilityRuleId): void
  233.     {
  234.         $this->availabilityRuleId $availabilityRuleId;
  235.     }
  236.     public function getMediaId(): ?string
  237.     {
  238.         return $this->mediaId;
  239.     }
  240.     public function setMediaId(?string $mediaId): void
  241.     {
  242.         $this->mediaId $mediaId;
  243.     }
  244.     public function getMedia(): ?MediaEntity
  245.     {
  246.         return $this->media;
  247.     }
  248.     public function setMedia(?MediaEntity $media): void
  249.     {
  250.         $this->media $media;
  251.     }
  252.     public function getAfterOrderEnabled(): bool
  253.     {
  254.         return $this->afterOrderEnabled;
  255.     }
  256.     public function setAfterOrderEnabled(bool $afterOrderEnabled): void
  257.     {
  258.         $this->afterOrderEnabled $afterOrderEnabled;
  259.     }
  260.     public function getShortName(): ?string
  261.     {
  262.         return $this->shortName;
  263.     }
  264.     public function setShortName(?string $shortName): void
  265.     {
  266.         $this->shortName $shortName;
  267.     }
  268.     public function getAppPaymentMethod(): ?AppPaymentMethodEntity
  269.     {
  270.         return $this->appPaymentMethod;
  271.     }
  272.     public function setAppPaymentMethod(?AppPaymentMethodEntity $appPaymentMethod): void
  273.     {
  274.         $this->appPaymentMethod $appPaymentMethod;
  275.     }
  276.     public function isSynchronous(): bool
  277.     {
  278.         return $this->synchronous;
  279.     }
  280.     public function setSynchronous(bool $synchronous): void
  281.     {
  282.         $this->synchronous $synchronous;
  283.     }
  284.     public function isAsynchronous(): bool
  285.     {
  286.         return $this->asynchronous;
  287.     }
  288.     public function setAsynchronous(bool $asynchronous): void
  289.     {
  290.         $this->asynchronous $asynchronous;
  291.     }
  292.     public function isPrepared(): bool
  293.     {
  294.         return $this->prepared;
  295.     }
  296.     public function setPrepared(bool $prepared): void
  297.     {
  298.         $this->prepared $prepared;
  299.     }
  300.     public function isRefundable(): bool
  301.     {
  302.         return $this->refundable;
  303.     }
  304.     public function setRefundable(bool $refundable): void
  305.     {
  306.         $this->refundable $refundable;
  307.     }
  308. }