#pragma warning disable CA1008 // Enums should have zero value
namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos;
///
/// Schedules Direct API error codes.
///
public enum SdErrorCode
{
///
/// Invalid user.
///
InvalidUser = 4001,
///
/// Invalid password hash.
///
InvalidHash = 4003,
///
/// Account locked or disabled.
///
AccountLocked = 4004,
///
/// Account expired.
///
AccountExpired = 4005,
///
/// Token has expired.
///
TokenExpired = 4006,
///
/// Password is required.
///
PasswordRequired = 4008,
///
/// Maximum login attempts exceeded.
///
MaxLoginAttempts = 4009,
///
/// Temporary lockout.
///
TemporaryLockout = 4010,
///
/// Maximum image downloads reached for the day.
///
MaxImageDownloads = 5002,
///
/// Maximum schedule/metadata requests reached for the day.
///
MaxScheduleRequests = 5003
}