if ((top.OneRateModelInit == "undefined") || (top.OneRateModelInit != true))
{
	function RateResponse(){
		this.date = null;
		this.buyersRates = null;
		this.sellersRates = null;
	}

	RateResponse.prototype.setDate = function(pDate){
		this.date = pDate;
	}

	RateResponse.prototype.getDate = function(){
		return this.date;
	}

	RateResponse.prototype.setBuyersRates = function(rates){
		this.buyersRates  = rates;
	}

	RateResponse.prototype.getBuyersRates = function(){
		return this.buyersRates;
	}

	RateResponse.prototype.getSellersRates = function(){
		return this.sellersRates;
	}

	RateResponse.prototype.setSellersRates = function(rates){
		this.sellersRates  = rates;
	}

	top.OneRateModelInit = true;
}
