ds/impl/BumpItem.js

/**
 * @fileoverview This file contains internal data structures used in DsClient
 *
 * @author anders.rejdebrant@spark-vision.com (Anders Rejdebrant)
 */

goog.provide('spv.ds.impl.BumpItem');




/**
 * @struct
 * @constructor
 * @param {string} id
 * @param {string} short_text
 * @param {string} medium_text
 * @param {string} long_text
 */
spv.ds.impl.BumpItem = function(
		id,
		short_text,
		medium_text,
		long_text)
{
	/**
	 * @type {string}
	 */
	this.id = id;

	/**
	 * @type {string}
	 */
	this.short_text = short_text;

	/**
	 * @type {string}
	 */
	this.medium_text = medium_text;

	/**
	 * @type {string}
	 */
	this.long_text = long_text;

};