CredentialStoreID

public struct CredentialStoreID : RawRepresentable, Hashable, CustomStringConvertible, CustomDebugStringConvertible

Credential Store ID. Use this struct for the StoreSelectorStep and OnbordingContext to create STORE - ID associations for steps that need to use a store other than the one in the OnboardingContext. You can extend the available items using extension.

  • The global shared ID.

    Declaration

    Swift

    public static let shared: CredentialStoreID
  • The global default ID.

    Declaration

    Swift

    public static let `default`: CredentialStoreID
  • RawValue of OnboardingInfokey

    Declaration

    Swift

    public var rawValue: String
  • HashValue of OnboardingInfokey

    Declaration

    Swift

    public var hashValue: Int { get }
  • OnboardingInfoKey Initializer

    Declaration

    Swift

    public init(rawValue: String)

    Parameters

    rawValue

    String value as the infoKey

  • OnboardingInfoKey Initializer

    Declaration

    Swift

    public init(_ rawValue: String)

    Parameters

    rawValue

    String value as the infoKey

  • Description of OnboardingInfokey

    Declaration

    Swift

    public var description: String { get }
  • Debugdescription of OnboardingInfokey

    Declaration

    Swift

    public var debugDescription: String { get }