vds/VolvoRetailer.js

/**
 * @fileoverview Exposed data type for use outside of VdsClient.
 *               All properties should be exposed to allow use from uncompiled
 *               code.
 *
 * @author anders.rejdebrant@spark-vision.com (Anders Rejdebrant)
 */

goog.provide('spv.vds.VolvoRetailer');




/**
 * @export
 * @struct
 * @constructor
 */
spv.vds.VolvoRetailer = function()
{
	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.id;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.name;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.structure_type;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.district;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.occupation;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.center_district;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.visit_address;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.visit_post_number;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.visit_post_town;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.mail_address;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.mail_post_number;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.mail_post_town;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.region;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.address_2;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.phone;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.fax;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.company_email;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.used_cars_email;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.new_cars_email;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.new_contact_email;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.home_page;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.country;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.latitude;

	/**
	 * @type {string}
	 * @nocollapse
	 */
	this.longitude;
};