X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FDAO%2FParticipantStatusType.php;h=bdb75e0e43cabb7f7939c0e0d136b9e033ff13ec;hb=34409022ce4b4dfd27dc7b35939f8017ce2207ef;hp=3e24df9e46f3fb386b40219789be07a3cb5f6719;hpb=881c8ad30a5b74b11ae6c85a985e1951094c2cc6;p=civicrm-core.git diff --git a/CRM/Event/DAO/ParticipantStatusType.php b/CRM/Event/DAO/ParticipantStatusType.php index 3e24df9e46..bdb75e0e43 100644 --- a/CRM/Event/DAO/ParticipantStatusType.php +++ b/CRM/Event/DAO/ParticipantStatusType.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Event/ParticipantStatusType.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:d4e01997101377c20d79423f6dc281b9) + * (GenCodeChecksum:bb9ea5411d4ab4f767d891f2e0f20858) */ /** @@ -34,63 +34,81 @@ class CRM_Event_DAO_ParticipantStatusType extends CRM_Core_DAO { /** * unique participant status type id * - * @var int + * @var int|string|null + * (SQL type: int unsigned) + * Note that values will be retrieved from the database as a string. */ public $id; /** * non-localized name of the status type * - * @var string + * @var string|null + * (SQL type: varchar(64)) + * Note that values will be retrieved from the database as a string. */ public $name; /** * localized label for display of this status type * - * @var string + * @var string|null + * (SQL type: varchar(255)) + * Note that values will be retrieved from the database as a string. */ public $label; /** * the general group of status type this one belongs to * - * @var string + * @var string|null + * (SQL type: varchar(8)) + * Note that values will be retrieved from the database as a string. */ public $class; /** * whether this is a status type required by the system * - * @var bool + * @var bool|string|null + * (SQL type: tinyint) + * Note that values will be retrieved from the database as a string. */ public $is_reserved; /** * whether this status type is active * - * @var bool + * @var bool|string|null + * (SQL type: tinyint) + * Note that values will be retrieved from the database as a string. */ public $is_active; /** * whether this status type is counted against event size limit * - * @var bool + * @var bool|string|null + * (SQL type: tinyint) + * Note that values will be retrieved from the database as a string. */ public $is_counted; /** * controls sort order * - * @var int + * @var int|string + * (SQL type: int unsigned) + * Note that values will be retrieved from the database as a string. */ public $weight; /** * whether the status type is visible to the public, an implicit foreign key to option_value.value related to the `visibility` option_group * - * @var int + * @var int|string|null + * (SQL type: int unsigned) + * Note that values will be retrieved from the database as a string. */ public $visibility_id;