UnenrollResult

public final class UnenrollResult : ResultProtocol

Holds the result of unenrolling an authentication mechanism.

  • The type of error.

    Declaration

    Swift

    public fileprivate(set) var error: Error?
  • Construct an instance containing the exception.

    Declaration

    Swift

    public init(error: Error)

    Parameters

    error

    An instance of the Error representing the error.

  • Parses the object into an UnenrollResult.

    Throws

    IBMMobileKitError.serverError

    Declaration

    Swift

    open static func parse(_ data: [String : Any]) throws -> UnenrollResult

    Parameters

    data

    The object to deserialize from.

    Return Value

    Deserialized UnenrollResult.