Properties.prototype.getPropertyTypes = function (entity, callback) {
    var path = propertiesPath + '/' + entity + '/types';

    this.getRequest(path, {}, {}, function (error, response, body) {
        callback(error, response, body);