FieldConfiguration

public enum FieldConfiguration

Whether a field should be hidden, optional, or required.

  • The field is not displayed.

    Declaration

    Swift

    case hidden
  • The field is displayed, but the customer can leave it blank.

    Declaration

    Swift

    case optional
  • The field is displayed, but the customer is required to fill it in. If the customer doesn’t, the sheet displays an error and disables the continue button.

    Declaration

    Swift

    case required