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

GetComplaintSubjects() public method

Performs the category method: Retrieves a list of possible complaint subjects. This is used in conjunction with the send a complaint API. GET

DOES NOT REQUIRE AUTHENTICATION.
public GetComplaintSubjects ( ) : ComplaintSubjectCollection
return ComplaintSubjectCollection
        public ComplaintSubjectCollection GetComplaintSubjects()
        {
            if (_catalogue == null)
            {
                _catalogue = new CatalogueMethods(_connection);
            }

            return _catalogue.GetComplaintSubjects();
        }
Client