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

MemberLedger() public method

Performs the My Trade Me method: Retrieve a member’s ledger.

Creates a query string using the parameters provided - parameters can be null if they are not required for the request.

REQUIRES AUTHENTICATION.
public MemberLedger ( MemberLedgerCriteria criteria, string page, string rows ) : MemberLedger
criteria MemberLedgerCriteria The criteria.
page string Page number.
rows string Number of rows per page.
return MemberLedger
        public MemberLedger MemberLedger(MemberLedgerCriteria criteria, string page, string rows)
        {
            if (_myTradeMe == null)
            {
                _myTradeMe = new MyTradeMeMethods(_connection);
            }

            return _myTradeMe.MemberLedger(criteria, page, rows);
        }

Same methods

Client::MemberLedger ( string query ) : MemberLedger
Client