SDKAppearanceMode

@objc
public enum SDKAppearanceMode : Int, CaseIterable

SDK appearance mode.

  • fullscreen: SDK UI will appear fullscreen.
  • windowed: SDK UI will try to take as little space on the screen as possible.
  • default: Default mode is fullscreen for Payment and Authorization and windowed for saving the card.
  • Fullscreen mode.

    Declaration

    Swift

    @objc(Fullscreen)
    case fullscreen
  • Windowed mode.

    Declaration

    Swift

    @objc(Windowed)
    case windowed
  • Default mode based on the transaction type.

    Declaration

    Swift

    @objc(Default)
    case `default`
  • Declaration

    Swift

    public var description: String { get }