interface AiUsageMember {
    dailyCostLimit: null | number;
    dailyCostSpent: number;
    dailyResetAt: string;
    monthlyCostLimit: null | number;
    monthlyCostSpent: number;
    monthlyResetAt: string;
    user: {
        avatarUrl: string;
        fullName: string;
        id: number;
        username: string;
    };
}

Properties

dailyCostLimit: null | number

in USD; null means no limit, 0 means AI usage is blocked for the user

dailyCostSpent: number
dailyResetAt: string
monthlyCostLimit: null | number

in USD; null means no limit, 0 means AI usage is blocked for the user

monthlyCostSpent: number
monthlyResetAt: string
user: {
    avatarUrl: string;
    fullName: string;
    id: number;
    username: string;
}