import { DaffProductDriverResponse } from '@daffodil/product/driver'
The driver response model that contains all products returned by the platform.
interface DaffProductDriverResponse<T extends DaffProduct = DaffProduct> {
id: T["id"]
products: T[]
}
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 |