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

FixedPriceOffersByMember() public method

Performs the Fixed Price Offer Method: Retrieve the fixed price offers offered by a member. GET

Creates a query string and performs the request.

REQUIRES AUTHENTICATION.
public FixedPriceOffersByMember ( ) : FixedPriceOffers
return FixedPriceOffers
        public FixedPriceOffers FixedPriceOffersByMember()
        {
            if (_fixedPrice == null)
            {
                _fixedPrice = new FixedPriceOfferMethods(_connection);
            }

            return _fixedPrice.FixedPriceOffersByMember();
        }
Client