public getAccountInfoResponse(long responseTime, long operations, long units, string requestId, Easynet.Edge.Services.Google.Adwords.GAdWordsAccountServiceV12.AccountInfo getAccountInfoReturn)
 {
     this.responseTime         = responseTime;
     this.operations           = operations;
     this.units                = units;
     this.requestId            = requestId;
     this.getAccountInfoReturn = getAccountInfoReturn;
 }
 public updateAccountInfoRequest(string useragent, string password, string email, string clientEmail, string clientCustomerId, string developerToken, string applicationToken, Easynet.Edge.Services.Google.Adwords.GAdWordsAccountServiceV12.AccountInfo accountInfo)
 {
     this.useragent        = useragent;
     this.password         = password;
     this.email            = email;
     this.clientEmail      = clientEmail;
     this.clientCustomerId = clientCustomerId;
     this.developerToken   = developerToken;
     this.applicationToken = applicationToken;
     this.accountInfo      = accountInfo;
 }
 public long updateAccountInfo(string useragent, string password, string email, string clientEmail, string clientCustomerId, string developerToken, string applicationToken, Easynet.Edge.Services.Google.Adwords.GAdWordsAccountServiceV12.AccountInfo accountInfo, out long operations, out long units, out string requestId)
 {
     Easynet.Edge.Services.Google.Adwords.GAdWordsAccountServiceV12.updateAccountInfoRequest inValue = new Easynet.Edge.Services.Google.Adwords.GAdWordsAccountServiceV12.updateAccountInfoRequest();
     inValue.useragent        = useragent;
     inValue.password         = password;
     inValue.email            = email;
     inValue.clientEmail      = clientEmail;
     inValue.clientCustomerId = clientCustomerId;
     inValue.developerToken   = developerToken;
     inValue.applicationToken = applicationToken;
     inValue.accountInfo      = accountInfo;
     Easynet.Edge.Services.Google.Adwords.GAdWordsAccountServiceV12.updateAccountInfoResponse retVal = ((Easynet.Edge.Services.Google.Adwords.GAdWordsAccountServiceV12.AccountInterface)(this)).updateAccountInfo(inValue);
     operations = retVal.operations;
     units      = retVal.units;
     requestId  = retVal.requestId;
     return(retVal.responseTime);
 }