BaseType

public enum BaseType : String, Codable

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
  • TimeInterval

    Declaration

    Swift

    case timeInterval
  • List of all the base types

    Declaration

    Swift

    public static func allTypes() -> [BaseType]