bananas-commerce-admin
Version:
What's this, an admin for apes?
25 lines (21 loc) • 475 B
text/typescript
export interface Price {
article_code: string;
amount: string;
currency?: string | undefined;
}
export interface ArticlePriceListSerializer {
id: number;
name: string;
is_active: boolean;
site_code: string;
channel: string;
currency?: string | undefined;
}
export interface ArticlePriceSerializer {
price_list: ArticlePriceListSerializer;
amount: string;
}
export interface ArticlePriceUpdateSerializer {
price_list_id: number;
amount: string;
}