UNPKG

openapi-node

Version:

A Node library to interact with the Wix Hive (RESTful API)

61 lines (52 loc) 954 B
/** THIS IS A GENERATED FILE, DO NOT EDIT THIS Generated on 2014-09-04T10:16:59.652Z **/ var _ = require('lodash-node'); /** * The Album class * @constructor * @alias Album */ function Album() { /** * The name value * @member */ this.name = null; /** * The id value * @member */ this.id = null; } /** * @param value the value of 'name' * @returns {@link Album } */ Album.prototype.withName = function(value) { this['name'] = value; return this; }; /** * @param value the value of 'id' * @returns {@link Album } */ Album.prototype.withId = function(value) { this['id'] = value; return this; }; /** * The AlbumLyricsSchema class * @constructor * @alias AlbumLyricsSchema */ function AlbumLyricsSchema() { /** * The album of value * @member * @type { Album } */ this.album = Object.create(Album.prototype); } module.exports = AlbumLyricsSchema;