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

GetNote() public method

Retrieves the note for a listing, if there is one. GET

REQUIRES AUTHENTICATION.
public GetNote ( string listingId ) : NoteResponse
listingId string The ID of the listing to retrieve the note for.
return NoteResponse
        public NoteResponse GetNote(string listingId)
        {
            if (_myTradeMe == null)
            {
                _myTradeMe = new MyTradeMeMethods(_connection);
            }

            return _myTradeMe.GetNote(listingId);
        }
Client