complex good module
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import ISummary from '@/core/models';
|
||||
|
||||
export interface IConsumerComplexGoodRawResponse {
|
||||
id: string;
|
||||
name: string;
|
||||
sku: string;
|
||||
category: ISummary;
|
||||
unit_type: string;
|
||||
pricing_model: string;
|
||||
description?: string;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
}
|
||||
export interface IConsumerComplexGoodResponse extends IConsumerComplexGoodRawResponse {}
|
||||
|
||||
export interface IConsumerComplexGoodRequest {
|
||||
name: string;
|
||||
sku: string;
|
||||
category_id: string;
|
||||
unit_type: string;
|
||||
pricing_model: string;
|
||||
description?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user