FieldType

public enum FieldType: String

Field types to count.

  • A type of a int field.

    Declaration

    Swift

    case integer = "INTEGER"
  • A type of a decimal field.

    Declaration

    Swift

    case decimal = "DECIMAL"
  • A type of a boolean field.

    Declaration

    Swift

    case bool = "BOOLEAN"
  • A type of a object field.

    Declaration

    Swift

    case object = "OBJECT"
  • A type of a array field.

    Declaration

    Swift

    case array = "ARRAY"