Details

@objc(MoEngageAuthenticationErrorDetails)
public class Details : NSObject

Base authentication error details class.

This class serves as the base for all authentication error details. Specific authentication types should subclass this to provide additional context.

  • Optional human-readable error message from the server.

    This message provides additional context about the error and may contain server-specific details. The message can be nil if no additional information is available from the server.

    Usage

    • Display to developers for debugging purposes
    • Log for error tracking and analytics
    • Do not display directly to end users (may contain technical details)

    Declaration

    Swift

    @objc
    public let message: String?