var ProfileMotivation=function() {
ProfileMotivation.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ProfileMotivation.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ProfileMotivation._staticInstance.get_path();},
Save:function(Motivation,succeededCallback, failedCallback, userContext) {
/// <param name="Motivation" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'Save',true,{Motivation:Motivation},succeededCallback,failedCallback,userContext); }}
ProfileMotivation.registerClass('ProfileMotivation',Sys.Net.WebServiceProxy);
ProfileMotivation._staticInstance = new ProfileMotivation();
ProfileMotivation.set_path = function(value) {
ProfileMotivation._staticInstance.set_path(value); }
ProfileMotivation.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ProfileMotivation._staticInstance.get_path();}
ProfileMotivation.set_timeout = function(value) {
ProfileMotivation._staticInstance.set_timeout(value); }
ProfileMotivation.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ProfileMotivation._staticInstance.get_timeout(); }
ProfileMotivation.set_defaultUserContext = function(value) { 
ProfileMotivation._staticInstance.set_defaultUserContext(value); }
ProfileMotivation.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ProfileMotivation._staticInstance.get_defaultUserContext(); }
ProfileMotivation.set_defaultSucceededCallback = function(value) { 
 ProfileMotivation._staticInstance.set_defaultSucceededCallback(value); }
ProfileMotivation.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ProfileMotivation._staticInstance.get_defaultSucceededCallback(); }
ProfileMotivation.set_defaultFailedCallback = function(value) { 
ProfileMotivation._staticInstance.set_defaultFailedCallback(value); }
ProfileMotivation.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ProfileMotivation._staticInstance.get_defaultFailedCallback(); }
ProfileMotivation.set_path("/ProfileMotivation.asmx");
ProfileMotivation.Save= function(Motivation,onSuccess,onFailed,userContext) {
/// <param name="Motivation" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
ProfileMotivation._staticInstance.Save(Motivation,onSuccess,onFailed,userContext); }

