.. index:: 
  !FieldType Enumeration

.. _id3_bioseal_field_type_enum:

===============================================================================
FieldType Enumeration
===============================================================================

Namespace: :ref:`id3.Bioseal<reference_bioseal>`

Definition
----------

.. line-block::
    Enumerates the field types present in the payload.

Fields
------

.. list-table:: 
  :width: 100%
  :widths: 5 5 90
  :header-rows: 1

  * - Name
    - Value
    - Description
  * - ``unknown``
    - 0
    - Unknown type.
  * - ``integer``
    - 1
    - Integer.
  * - ``boolean``
    - 2
    - Boolean.
  * - ``float``
    - 3
    - Float.
  * - ``string``
    - 4
    - String.
  * - ``binary``
    - 5
    - Binary.
  * - ``date``
    - 6
    - Date.
  * - ``timestamp``
    - 7
    - Value representing the number of seconds since 1970-01-01 00:00:00 UTC.
  * - ``time``
    - 8
    - Time.
  * - ``object``
    - 9
    - Object.
  * - ``integerArray``
    - 10
    - Integer array.
  * - ``booleanArray``
    - 11
    - Boolean array.
  * - ``floatArray``
    - 12
    - Float array.
  * - ``stringArray``
    - 13
    - String array.
  * - ``binaryArray``
    - 14
    - Binary array.
  * - ``dateArray``
    - 15
    - Date array.
  * - ``timestampArray``
    - 16
    - Date array.
  * - ``objectArray``
    - 17
    - Object array.
