@salla.sa/twilight-components
Version:
Salla Web Component
26 lines (25 loc) • 455 B
TypeScript
export interface GiftResponse {
quantity: number;
product: Product;
sender_name: string;
gift_images: GiftImage[];
gift_texts: GiftText[];
cities?: Cities[];
}
export interface Cities {
id: number;
name: string;
}
export interface Product {
id: number;
name: string;
type: string;
}
export interface GiftImage {
id: number;
url: string;
}
export interface GiftText {
id: number;
text: string;
}