21 lines
404 B
TypeScript
21 lines
404 B
TypeScript
export interface FulfillmentOrderProduct {
|
|
id?: string;
|
|
sku?: string;
|
|
itemClass?: string;
|
|
whmcsProductId?: string;
|
|
billingCycle?: string;
|
|
}
|
|
|
|
export interface FulfillmentOrderItem {
|
|
id: string;
|
|
orderId: string;
|
|
quantity: number;
|
|
product: FulfillmentOrderProduct | null;
|
|
}
|
|
|
|
export interface FulfillmentOrderDetails {
|
|
id: string;
|
|
orderType?: string;
|
|
items: FulfillmentOrderItem[];
|
|
}
|