bmw-js
Version:
BMW javascript REST client for the BMW i3 hackathon.
46 lines (32 loc) • 1.18 kB
JavaScript
// Generated by CoffeeScript 1.8.0
(function() {
var Address, MojioModel,
__hasProp = {}.hasOwnProperty,
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
MojioModel = require('./MojioModel');
module.exports = Address = (function(_super) {
__extends(Address, _super);
Address.prototype._schema = {
"Address1": "String",
"Address2": "String",
"City": "String",
"State": "String",
"Zip": "String",
"Country": "String"
};
Address.prototype._resource = 'Addresss';
Address.prototype._model = 'Address';
function Address(json) {
Address.__super__.constructor.call(this, json);
}
Address._resource = 'Addresss';
Address._model = 'Address';
Address.resource = function() {
return Address._resource;
};
Address.model = function() {
return Address._model;
};
return Address;
})(MojioModel);
}).call(this);