Merge pull request #22631 from braders/calculateBaseScheduleDate-docblock
[civicrm-core.git] / CRM / Core / DAO / StateProvince.php
index 83442859b47473335c658a622965e298955ec2e4..a07f290a77813571db2bd6ff30842b079d3ea9c1 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Generated from xml/schema/CRM/Core/StateProvince.xml
  * DO NOT EDIT.  Generated by CRM_Core_CodeGen
- * (GenCodeChecksum:440f793689eaaa44fe906d1c2b511f8d)
+ * (GenCodeChecksum:fe8e2b8bd40cc99eb28b66260a48da80)
  */
 
 /**
@@ -40,35 +40,45 @@ class CRM_Core_DAO_StateProvince extends CRM_Core_DAO {
   /**
    * State/Province 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;
 
   /**
    * Name of State/Province
    *
-   * @var string
+   * @var string|null
+   *   (SQL type: varchar(64))
+   *   Note that values will be retrieved from the database as a string.
    */
   public $name;
 
   /**
    * 2-4 Character Abbreviation of State/Province
    *
-   * @var string
+   * @var string|null
+   *   (SQL type: varchar(4))
+   *   Note that values will be retrieved from the database as a string.
    */
   public $abbreviation;
 
   /**
    * ID of Country that State/Province belong
    *
-   * @var int
+   * @var int|string
+   *   (SQL type: int unsigned)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $country_id;
 
   /**
    * Is this StateProvince 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;