DropGameCreateInput: {
    createdAt?: Date | string;
    dbId?: string;
    description?: string | null;
    drops?: DropCreateNestedManyWithoutGameInput;
    gameId: string;
    guildDropsGames?: GuildDropsGameCreateNestedManyWithoutGameInput;
    imageUrl?: string | null;
    name: string;
    platform: PlatformEnum;
    platformData?: Prisma.NullableJsonNullValueInput | InputJsonValue;
    slug?: string | null;
    updatedAt?: Date | string;
}