ValueType

public enum ValueType : UInt32, CaseIterable, Codable

Supported types of the data attribute values.

  • Value of string type.

    Declaration

    Swift

    case string
  • Value of 64-bit integer type.

    Declaration

    Swift

    case int64
  • Value of single precision float type.

    Declaration

    Swift

    case float
  • Value of double precision float type.

    Declaration

    Swift

    case double
  • Value of boolean type.

    Declaration

    Swift

    case boolean
  • Value of array type.

    Declaration

    Swift

    case array