class FinalListing(object):
    def __init__(
        self, full_item_name: str, market_url: str, inspect_link: str, rank: str, price
    ):
        self.full_item_name = full_item_name
        self.market_url = market_url
        self.inspect_link = inspect_link
        self.rank = rank
        self.price = price
    
