uawdijnntqw1x1x1
IP : 216.73.216.8
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
craftcms
/
commerce
/
src
/
base
/
PlanTrait.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\commerce\base; use DateTime; /** * Plan trait * * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 2.0 */ trait PlanTrait { /** * @var int|null Plan ID */ public ?int $id = null; /** * @var int|null The gateway ID. */ public ?int $gatewayId = null; /** * @var string|null plan name */ public ?string $name = null; /** * @var string|null plan handle */ public ?string $handle = null; /** * @var int|null ID of the entry containing plan information */ public ?int $planInformationId = null; /** * @var string|null plan reference on the gateway */ public ?string $reference = null; /** * @var bool whether the plan is enabled on site */ public bool $enabled = false; /** * @var bool whether the plan is archived */ public bool $isArchived = false; /** * @var DateTime|null when the plan was archived */ public ?DateTime $dateArchived = null; /** * @var string|null gateway response */ public ?string $planData = null; /** * @var string|null plan uid */ public ?string $uid = null; /** * @var int|null sort order */ public ?int $sortOrder = null; }
/srv/users/craft4/apps/craft4-newsite-space/vendor/craftcms/commerce/src/base/PlanTrait.php