@openfoodfacts/openfoodfacts-nodejs
    Preparing search index...

    Type Alias FlagBatchResponse

    type FlagBatchResponse = {
        ticket_id_to_flags: {
            [ticketId: string]: {
                barcode?: string | null;
                comment?: string | null;
                confidence?: number | null;
                created_at?: string;
                flavor: components["schemas"]["Flavor"];
                image_id?: string | null;
                reason?: string | null;
                source: components["schemas"]["SourceType"];
                type: components["schemas"]["IssueType"];
                url: string;
                user_id: string;
            }[];
        };
    }
    Index

    Properties

    ticket_id_to_flags: {
        [ticketId: string]: {
            barcode?: string | null;
            comment?: string | null;
            confidence?: number | null;
            created_at?: string;
            flavor: components["schemas"]["Flavor"];
            image_id?: string | null;
            reason?: string | null;
            source: components["schemas"]["SourceType"];
            type: components["schemas"]["IssueType"];
            url: string;
            user_id: string;
        }[];
    }