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

SaveOrUpdateListingStatus() public method

Saves a status to a listing in the authenticated user’s Sold Items list. (POST)

REQUIRES AUTHENTICATION.
public SaveOrUpdateListingStatus ( string purchaseId, string stat ) : StatusResponse
purchaseId string The ID of the purchase.
stat string The status you want to save, should be one of the following: EmailSent, PaymentReceived, GoodsShipped, SaleCompleted.
return StatusResponse
        public StatusResponse SaveOrUpdateListingStatus(string purchaseId, string stat)
        {
            if (_myTradeMe == null)
            {
                _myTradeMe = new MyTradeMeMethods(_connection);
            }

            return _myTradeMe.SaveOrUpdateListingStatus(purchaseId, stat);
        }

Same methods

Client::SaveOrUpdateListingStatus ( string listingId, string offerId, string stat ) : StatusResponse
Client