Type Alias GuildScheduledMessageGroupByOutputType

GuildScheduledMessageGroupByOutputType: {
    _avg: GuildScheduledMessageAvgAggregateOutputType | null;
    _count: GuildScheduledMessageCountAggregateOutputType | null;
    _max: GuildScheduledMessageMaxAggregateOutputType | null;
    _min: GuildScheduledMessageMinAggregateOutputType | null;
    _sum: GuildScheduledMessageSumAggregateOutputType | null;
    channelId: string;
    content: string;
    createdAt: Date;
    creatorId: string;
    daysOfWeek: number[];
    dbId: string;
    eventOffsetMinutes: number | null;
    guildEventId: string | null;
    guildId: string;
    intervalMinutes: number | null;
    lastRunAt: Date | null;
    messageId: string;
    nextRunAt: Date | null;
    paused: boolean;
    recurrence: ScheduledMessageRecurrenceEnum;
    timeOfDay: string | null;
    timezone: string;
    trigger: ScheduledMessageTriggerEnum;
    webhookAvatarUrl: string | null;
    webhookEnabled: boolean;
    webhookUsername: string | null;
}