graycoreio/daffodil

View on GitHub
libs/order/src/models/composite-order-item.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { DaffOrderItem } from './order-item';

export interface DaffCompositeOrderItem extends DaffOrderItem {
  options: DaffCompositeOrderItemOption[];
}

export interface DaffCompositeOrderItemOption {
  option_label: string;
  value_label: string;
}