TradeMe.Api.Client.Client.GetLatestListings C# (CSharp) Method

GetLatestListings() public method

Performs the Listing Method: Retrieves the latest listed items for the whole country or for a single region. GET

DOES NOT REQUIRE AUTHENTICATION.
public GetLatestListings ( ) : LatestListings
return LatestListings
        public LatestListings GetLatestListings()
        {
            if (_listing == null)
            {
                _listing = new ListingMethods(_connection);
            }

            return _listing.GetLatestListings();
        }
Client