import { StoreItemPurchaseType } from "./StoreItemPurchaseType"; export interface StoreItemPublicMeta { price: string; image_url: string; purchase_type: StoreItemPurchaseType; name: string; description: string; label_tag: string; custom_label_tag?: string; limit_message: string; priority: number; related_items: number[]; hint_text: string; custom_data: string; show_timer?: boolean; cant_buy_message?: string; discount_prize?: number; discount_prize_ribbon?: string; custom_ribbon_image?: string; purchase_limit_message?: string; custom_section_id?: number; only_in_custom_section?: boolean; custom_section_type_id?: number; }