UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

24 lines (20 loc) 456 B
export interface Price { article_code: string; amount: string; currency?: string | undefined; } export interface ArticlePriceListSerializer { id: number; name: string; is_active: boolean; site_code: string; currency?: string | undefined; } export interface ArticlePriceSerializer { price_list: ArticlePriceListSerializer; amount: string; } export interface ArticlePriceUpdateSerializer { price_list_id: number; amount: string; }