DaffProductDriverResponse
The driver response model that contains all products returned by the platform.
import { DaffProductDriverResponse } from '@daffodil/product/driver'
interface DaffProductDriverResponse<T extends DaffProduct = DaffProduct> {
id: T['id']
products: T[]
}
Properties
Name | Type | Description |
---|---|---|
id | T['id'] | The ID of the "main" product. That is, the ID that was passed into the driver call. |
products | T[] | The list of products.
Contains the main product referenced by |