urembo-hub-api
    Preparing search index...

    Interface CreateOrderDto

    interface CreateOrderDto {
        cartItems: {
            appointmentDate?: string;
            currency: string;
            durationMinutes?: number;
            id: string;
            name: string;
            price: number;
            quantity?: number;
            staffId?: string;
            type: "product" | "service";
            vendorId?: string;
        }[];
        currency: string;
        customerEmail: string;
        customerPhone?: string;
        notes?: string;
        shippingAddress: { address: string; city: string };
        totalAmount: number;
    }
    Index

    Properties

    cartItems: {
        appointmentDate?: string;
        currency: string;
        durationMinutes?: number;
        id: string;
        name: string;
        price: number;
        quantity?: number;
        staffId?: string;
        type: "product" | "service";
        vendorId?: string;
    }[]
    currency: string
    customerEmail: string
    customerPhone?: string
    notes?: string
    shippingAddress: { address: string; city: string }
    totalAmount: number