X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FDAO%2FParticipantStatusType.php;h=bdb75e0e43cabb7f7939c0e0d136b9e033ff13ec;hb=34409022ce4b4dfd27dc7b35939f8017ce2207ef;hp=f4da6903bba55169ca15036974bdfb62c2d3d69a;hpb=f01582a07cfe8a8377055c75f6843a081db249b9;p=civicrm-core.git diff --git a/CRM/Event/DAO/ParticipantStatusType.php b/CRM/Event/DAO/ParticipantStatusType.php index f4da6903bb..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:0f5f8f9d2171b25bb250914d746996bc) + * (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;