var getDetails=function() {
getDetails.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
getDetails.prototype={
ByVIN:function(vin,succeededCallback, failedCallback, userContext) {
return this._invoke(getDetails.get_path(), 'ByVIN',false,{vin:vin},succeededCallback,failedCallback,userContext); }}
getDetails.registerClass('getDetails',Sys.Net.WebServiceProxy);
getDetails._staticInstance = new getDetails();
getDetails.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; getDetails._staticInstance._path = value; }
getDetails.get_path = function() { return getDetails._staticInstance._path; }
getDetails.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
getDetails._staticInstance._timeout = value; }
getDetails.get_timeout = function() { 
return getDetails._staticInstance._timeout; }
getDetails.set_defaultUserContext = function(value) { 
getDetails._staticInstance._userContext = value; }
getDetails.get_defaultUserContext = function() { 
return getDetails._staticInstance._userContext; }
getDetails.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; getDetails._staticInstance._succeeded = value; }
getDetails.get_defaultSucceededCallback = function() { 
return getDetails._staticInstance._succeeded; }
getDetails.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; getDetails._staticInstance._failed = value; }
getDetails.get_defaultFailedCallback = function() { 
return getDetails._staticInstance._failed; }
getDetails.set_path("/getDetails.asmx");
getDetails.ByVIN= function(vin,onSuccess,onFailed,userContext) {getDetails._staticInstance.ByVIN(vin,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(VehicleObject) === 'undefined') {
var VehicleObject=gtc("VehicleObject");
VehicleObject.registerClass('VehicleObject');
}
