FirebaseVertexAI Framework Reference

DataType

public enum DataType : String
extension DataType: Encodable

A data type.

Contains the set of OpenAPI data types.

  • A String type.

    Declaration

    Swift

    case string = "STRING"
  • A floating-point number type.

    Declaration

    Swift

    case number = "NUMBER"
  • An integer type.

    Declaration

    Swift

    case integer = "INTEGER"
  • A boolean type.

    Declaration

    Swift

    case boolean = "BOOLEAN"
  • An array type.

    Declaration

    Swift

    case array = "ARRAY"
  • An object type.

    Declaration

    Swift

    case object = "OBJECT"