public AddTokenRequestBody(AzureLibraryService.Token token)
 {
     this.token = token;
 }
 public AddTokenResponseBody(AzureLibraryService.Token AddTokenResult)
 {
     this.AddTokenResult = AddTokenResult;
 }
 public System.Threading.Tasks.Task <AzureLibraryService.AddTokenResponse> AddTokenAsync(AzureLibraryService.Token token)
 {
     AzureLibraryService.AddTokenRequest inValue = new AzureLibraryService.AddTokenRequest();
     inValue.Body       = new AzureLibraryService.AddTokenRequestBody();
     inValue.Body.token = token;
     return(((AzureLibraryService.LibraryServiceSoap)(this)).AddTokenAsync(inValue));
 }