Current section
Files
Jump to
Current section
Files
lib/dolphin/models/listings/listing.ex
defmodule Dolphin.Models.Listings.Listing do
@docmodule """
Contains the fields of a listing
"""
defstruct [
:type,
:id,
:app_downloads_per_month,
:bid_count,
:buy_it_now,
:confidential,
:current_price,
:ends_at,
:established_at,
:external_url,
:has_verified_revenue,
:has_verified_traffic,
:html_url,
:page_views_per_month,
:post_auction_negotiation,
:profit_per_month,
:property_name,
:property_type,
:reserve_met,
:revenue_per_month,
:revenue_sources,
:sale_method,
:starts_at,
:status,
:summary,
:thumbnail_url,
:title,
:uniques_per_month,
:watching
]
end