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

RespondToFixedPriceOffer() public method

Performs the Fixed Price Offer Method: Accepts or rejects a fixed price offer. POST

REQUIRES AUTHENTICATION.
public RespondToFixedPriceOffer ( FixedPriceOfferRequest request ) : System.Xml.Linq.XDocument
request FixedPriceOfferRequest The object that will be serialized into xml and then sent in a POST message.
return System.Xml.Linq.XDocument
        public XDocument RespondToFixedPriceOffer(FixedPriceOfferRequest request)
        {
            if (_fixedPrice == null)
            {
                _fixedPrice = new FixedPriceOfferMethods(_connection);
            }

            return _fixedPrice.RespondToFixedPriceOffer(request);
        }
Client