Type Alias GuildDropsFunctionsInput

GuildDropsFunctionsInput: {
    getGuildDrops: {
        auth: string;
        guildId: string;
    };
    updateGuildDrops: {
        auth: string;
        games?: {
            channelId?: string | null;
            id: string | null;
            liveNotifications?: boolean | null;
            roleId?: string | null;
            webhook?: {
                avatarUrl?: string | null;
                username?: string | null;
            } | null;
        }[];
        guildId: string;
        kickChannelId?: string | null;
        kickEnabled?: boolean;
        kickLiveNotificationChannelId?: string | null;
        kickLiveNotificationRoleId?: string | null;
        kickRoleId?: string | null;
        liveNotifications?: boolean;
        twitchChannelId?: string | null;
        twitchEnabled?: boolean;
        twitchLiveNotificationChannelId?: string | null;
        twitchLiveNotificationRoleId?: string | null;
        twitchRoleId?: string | null;
        webhook?: {
            avatarUrl?: string | null;
            username?: string | null;
        } | null;
    };
}