typedef NS_ENUM()

in SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteCommon.h [13:27]


typedef NS_ENUM(NSInteger, SPTAppRemoteErrorCode) {
    /// An unknown error.
    SPTAppRemoteUnknownError = -1,

    /// The background wakeup of the Spotify app failed.
    SPTAppRemoteBackgroundWakeupFailedError = -1000,
    /// The connection attempt to the Spotify app failed.
    SPTAppRemoteConnectionAttemptFailedError = -1001,
    /// The conncetion to the Spotify app was terminated.
    SPTAppRemoteConnectionTerminatedError = -1002,
    /// The arguments supplied are invalid.
    SPTAppRemoteInvalidArgumentsError = -2000,
    /// The request has failed for some reason.
    SPTAppRemoteRequestFailedError = -2001,
};