RegisterFieldType

public enum RegisterFieldType

Register Field Type enum

case dropdown(options: [String: String]?)
case radio(options: [String: String]?)
case country(options: [InPlayerFieldCountry])
case input
case datepicker
case checkbox
case unknown
  • When field type is select and provides additional options for a dropdown menu.

    Declaration

    Swift

    case dropdown(options: [String : String]?)
  • When field type is radio and provides additional options for a radio selective button.

    Declaration

    Swift

    case radio(options: [String : String]?)
  • When field type is country and provides additional options for a country selection.

    Declaration

    Swift

    case country(options: [InPlayerFieldCountry])
  • When field type is input.

    Declaration

    Swift

    case input
  • When field type is datepicker.

    Declaration

    Swift

    case datepicker
  • When field type is checkbox.

    Declaration

    Swift

    case checkbox
  • When field type cannot be determined.

    Declaration

    Swift

    case unknown