OptionalString

public enum OptionalString : Sendable

OptionalString is a string representation for an optional piece of text displayed to the user by Richie SDK.

  • none results in a nil string

    Declaration

    Swift

    case none
  • defaultValue results in the default string provided by the SDK.

    Declaration

    Swift

    case defaultValue
  • value(String) results in the specified string.

    Declaration

    Swift

    case value(String)