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

RetrieveMotorBikeCategories() public method

Performs the category methods: Retrieve a list of Trade Me Motors motorbike categories.

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

            return _catalogue.RetrieveMotorBikeCategories();
        }
Client