interface OrderShowItem {
    customerAddress: (undefined | string)[];
    customerCompensationAmount?: string;
    customerCompensationType?: string;
    customerContactNumber?: string;
    customerExperience?: string;
    customerId: string;
    customerName: (undefined | string)[];
    customerSkillGroup: {
        category: string;
        key: string;
        skills: string;
    }[];
    orderId: string;
    productId: string;
    productImage?: string;
    productName: string;
}

Properties

customerAddress: (undefined | string)[]

Address of customer

customerCompensationAmount?: string

customer compensation amount

customerCompensationType?: string

customer compensation type

customerContactNumber?: string

Phone number of customer

customerExperience?: string

customer experience

customerId: string

customerId

customerName: (undefined | string)[]

Name of customer

customerSkillGroup: {
    category: string;
    key: string;
    skills: string;
}[]

customer grouped skills

Type declaration

  • category: string
  • key: string
  • skills: string
orderId: string

orderId

productId: string

productId

productImage?: string

Image of ordered product

productName: string

Name of ordered product

Generated using TypeDoc