translations
This commit is contained in:
@ -181,11 +181,22 @@ export interface Currency {
|
||||
suffix: boolean;
|
||||
}
|
||||
|
||||
export interface CartItem {
|
||||
cart_item_id: number;
|
||||
link_rewrite: string;
|
||||
name: string;
|
||||
picture_uuid: string;
|
||||
product_id: number;
|
||||
quantity: number;
|
||||
single_item_price: number;
|
||||
total_price: number;
|
||||
}
|
||||
export interface UserCart {
|
||||
cart_items: CartItem[];
|
||||
id: number;
|
||||
checkout_in_progress: boolean;
|
||||
total_value: number;
|
||||
currency_iso: string;
|
||||
total_value: number;
|
||||
}
|
||||
|
||||
export interface GenericResponse<Data> {
|
||||
|
Reference in New Issue
Block a user