export interface AssetInterface { id: number; collection_id: number; owner_id: number; token_id: number; name: string; creator: string; description: string; uri: string; price: string; amount: number; status: number; stocks: number; opera_num: number; activity_name: string; } export interface AssetDetailInterface { asset: AssetInterface; user_id: number; mch_id: number; mch_profile_url: string; mch_name: string; contract_addr: string; contract_type: number; blockchain: number; activity_id: number; asset_no: number; username: string; profile_url: string; own_asset: boolean; own_collection: boolean; activity_name: string; youzan_product_url: string; } export interface AssetQuotaCheckInterface { quota: boolean; }