@wppconnect-team/wppconnect - v1.37.8
    Preparing search index...

    Interface SendOrderStatusParams

    interface SendOrderStatusParams {
        chat: any;
        contextInfo?: any;
        offset: number;
        orderInfo: {
            currency: string;
            discount?: number;
            items: {
                amount: number;
                id: string;
                isCustomItem?: boolean;
                isQuantitySet?: boolean;
                name: string;
                quantity: number;
            }[];
            referenceId?: string;
            shipping?: number;
            subtotal: number;
            tax?: number;
            totalAmount: number;
        };
        orderNote?: string;
        orderStatus: string;
        paymentMethod?: string;
        paymentStatus: string;
        sellerJid: any;
    }
    Index

    Properties

    chat: any
    contextInfo?: any
    offset: number
    orderInfo: {
        currency: string;
        discount?: number;
        items: {
            amount: number;
            id: string;
            isCustomItem?: boolean;
            isQuantitySet?: boolean;
            name: string;
            quantity: number;
        }[];
        referenceId?: string;
        shipping?: number;
        subtotal: number;
        tax?: number;
        totalAmount: number;
    }
    orderNote?: string
    orderStatus: string
    paymentMethod?: string
    paymentStatus: string
    sellerJid: any