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

GetJobAgentReport() public method

Retrieves the Job Agent report for the authenticated user.

REQUIRES AUTHENTICATION.
public GetJobAgentReport ( ) : JobAgentReport
return JobAgentReport
        public JobAgentReport GetJobAgentReport()
        {
            if (_myTradeMe == null)
            {
                _myTradeMe = new MyTradeMeMethods(_connection);
            }

            return _myTradeMe.GetJobAgentReport();
        }
Client