BaseType

public enum BaseType : String, Codable, RSDStringEnumSet

The base type of the answer result. This is used to indicate what the type is of the value being stored. The value stored in the RSDAnswerResult should be convertable to one of these base types.

  • Bool

    Declaration

    Swift

    case boolean
  • Data

    Declaration

    Swift

    case data
  • Date

    Declaration

    Swift

    case date
  • Double

    Declaration

    Swift

    case decimal
  • Int

    Declaration

    Swift

    case integer
  • String

    Declaration

    Swift

    case string
  • Codable

    Declaration

    Swift

    case codable