diff --git a/.travis.yml b/.travis.yml index 8977ed09..72c1e755 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,14 @@ language: csharp solution: intacct-sdk-net.sln mono: none -dotnet: 2.0.0 +dotnet: 2.1.300 install: - dotnet restore script: - dotnet build --configuration Release - dotnet test Intacct.SDK.Tests/Intacct.SDK.Tests.csproj --framework "netcoreapp2.0" +- dotnet test Intacct.SDK.Tests/Intacct.SDK.Tests.csproj --framework "netcoreapp2.1" notifications: slack: diff --git a/Intacct.SDK.Tests/ClientConfigTest.cs b/Intacct.SDK.Tests/ClientConfigTest.cs index fb126aee..c1176ef8 100644 --- a/Intacct.SDK.Tests/ClientConfigTest.cs +++ b/Intacct.SDK.Tests/ClientConfigTest.cs @@ -18,6 +18,7 @@ public void ExecuteTest() Assert.Null(clientConfig.SenderPassword); Assert.Null(clientConfig.SessionId); Assert.Null(clientConfig.CompanyId); + Assert.Null(clientConfig.EntityId); Assert.Null(clientConfig.UserId); Assert.Null(clientConfig.UserPassword); Assert.Null(clientConfig.Credentials); diff --git a/Intacct.SDK.Tests/Credentials/EndpointTest.cs b/Intacct.SDK.Tests/Credentials/EndpointTest.cs index 0450baa9..fb9eb7a7 100644 --- a/Intacct.SDK.Tests/Credentials/EndpointTest.cs +++ b/Intacct.SDK.Tests/Credentials/EndpointTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Credentials/Ini/default.ini b/Intacct.SDK.Tests/Credentials/Ini/default.ini index 53c1e968..36709265 100644 --- a/Intacct.SDK.Tests/Credentials/Ini/default.ini +++ b/Intacct.SDK.Tests/Credentials/Ini/default.ini @@ -15,3 +15,9 @@ user_password = iniuserpass sender_id = inisenderid sender_password = inisenderpass endpoint_url = https://unittest.intacct.com/ia/xmlgw.phtml + +[entity] +company_id = inicompanyid +entity_id = inientityid +user_id = iniuserid +user_password = iniuserpass diff --git a/Intacct.SDK.Tests/Credentials/LoginCredentialsTest.cs b/Intacct.SDK.Tests/Credentials/LoginCredentialsTest.cs index 81338aa5..5c1caf1c 100644 --- a/Intacct.SDK.Tests/Credentials/LoginCredentialsTest.cs +++ b/Intacct.SDK.Tests/Credentials/LoginCredentialsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -49,6 +49,29 @@ public void CredsFromConfigTest() LoginCredentials loginCreds = new LoginCredentials(config, this.SenderCreds); Assert.Equal("testcompany", loginCreds.CompanyId); + Assert.Null(loginCreds.EntityId); + Assert.Equal("testuser", loginCreds.UserId); + Assert.Equal("testpass", loginCreds.Password); + Endpoint endpoint = loginCreds.SenderCredentials.Endpoint; + Assert.Equal("https://api.intacct.com/ia/xml/xmlgw.phtml", endpoint.ToString()); + Assert.IsType(loginCreds.SenderCredentials); + } + + [Fact] + public void CredsFromConfigWithEntityIdTest() + { + ClientConfig config = new ClientConfig + { + CompanyId = "testcompany", + EntityId = "testentity", + UserId = "testuser", + UserPassword = "testpass" + }; + + LoginCredentials loginCreds = new LoginCredentials(config, this.SenderCreds); + + Assert.Equal("testcompany", loginCreds.CompanyId); + Assert.Equal("testentity", loginCreds.EntityId); Assert.Equal("testuser", loginCreds.UserId); Assert.Equal("testpass", loginCreds.Password); Endpoint endpoint = loginCreds.SenderCredentials.Endpoint; @@ -69,9 +92,70 @@ public void CredsFromProfileTest() LoginCredentials loginCreds = new LoginCredentials(config, this.SenderCreds); Assert.Equal("inicompanyid", loginCreds.CompanyId); + Assert.Null(loginCreds.EntityId); + Assert.Equal("iniuserid", loginCreds.UserId); + Assert.Equal("iniuserpass", loginCreds.Password); + } + + [Fact] + public void CredsFromProfileWithEntityTest() + { + string tempFile = Path.Combine(Directory.GetCurrentDirectory(), "Credentials", "Ini", "default.ini"); + + ClientConfig config = new ClientConfig() + { + ProfileFile = tempFile, + ProfileName = "entity", + }; + + LoginCredentials loginCreds = new LoginCredentials(config, this.SenderCreds); + Assert.Equal("inicompanyid", loginCreds.CompanyId); + Assert.Equal("inientityid", loginCreds.EntityId); Assert.Equal("iniuserid", loginCreds.UserId); Assert.Equal("iniuserpass", loginCreds.Password); } + + [Fact] + public void CredsFromEnvironmentTest() + { + Environment.SetEnvironmentVariable("INTACCT_COMPANY_ID", "envcompany"); + Environment.SetEnvironmentVariable("INTACCT_USER_ID", "envuser"); + Environment.SetEnvironmentVariable("INTACCT_USER_PASSWORD", "envuserpass"); + + ClientConfig config = new ClientConfig(); + LoginCredentials loginCreds = new LoginCredentials(config, this.SenderCreds); + + Assert.Equal("envcompany", loginCreds.CompanyId); + Assert.Null(loginCreds.EntityId); + Assert.Equal("envuser", loginCreds.UserId); + Assert.Equal("envuserpass", loginCreds.Password); + + Environment.SetEnvironmentVariable("INTACCT_COMPANY_ID", null); + Environment.SetEnvironmentVariable("INTACCT_USER_ID", null); + Environment.SetEnvironmentVariable("INTACCT_USER_PASSWORD", null); + } + + [Fact] + public void CredsFromEnvironmentWithEntityTest() + { + Environment.SetEnvironmentVariable("INTACCT_COMPANY_ID", "envcompany"); + Environment.SetEnvironmentVariable("INTACCT_ENTITY_ID", "enventity"); + Environment.SetEnvironmentVariable("INTACCT_USER_ID", "envuser"); + Environment.SetEnvironmentVariable("INTACCT_USER_PASSWORD", "envuserpass"); + + ClientConfig config = new ClientConfig(); + LoginCredentials loginCreds = new LoginCredentials(config, this.SenderCreds); + + Assert.Equal("envcompany", loginCreds.CompanyId); + Assert.Equal("enventity", loginCreds.EntityId); + Assert.Equal("envuser", loginCreds.UserId); + Assert.Equal("envuserpass", loginCreds.Password); + + Environment.SetEnvironmentVariable("INTACCT_COMPANY_ID", null); + Environment.SetEnvironmentVariable("INTACCT_ENTITY_ID", null); + Environment.SetEnvironmentVariable("INTACCT_USER_ID", null); + Environment.SetEnvironmentVariable("INTACCT_USER_PASSWORD", null); + } [Fact] public void CredsFromArrayNoCompanyIdTest() diff --git a/Intacct.SDK.Tests/Credentials/ProfileCredentialProviderTest.cs b/Intacct.SDK.Tests/Credentials/ProfileCredentialProviderTest.cs index fe5ce175..b6f5f14b 100644 --- a/Intacct.SDK.Tests/Credentials/ProfileCredentialProviderTest.cs +++ b/Intacct.SDK.Tests/Credentials/ProfileCredentialProviderTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -36,6 +36,26 @@ public void GetLoginCredentialsFromSpecificProfileTest() ClientConfig loginCreds = ProfileCredentialProvider.GetLoginCredentials(config); Assert.Equal("inicompanyid", loginCreds.CompanyId); + Assert.Null(loginCreds.EntityId); + Assert.Equal("iniuserid", loginCreds.UserId); + Assert.Equal("iniuserpass", loginCreds.UserPassword); + } + + [Fact] + public void GetLoginCredentialsWithEntityFromSpecificProfileTest() + { + string tempFile = Path.Combine(Directory.GetCurrentDirectory(), "Credentials", "Ini", "default.ini"); + + ClientConfig config = new ClientConfig() + { + ProfileFile = tempFile, + ProfileName = "entity", + }; + + ClientConfig loginCreds = ProfileCredentialProvider.GetLoginCredentials(config); + + Assert.Equal("inicompanyid", loginCreds.CompanyId); + Assert.Equal("inientityid", loginCreds.EntityId); Assert.Equal("iniuserid", loginCreds.UserId); Assert.Equal("iniuserpass", loginCreds.UserPassword); } @@ -54,5 +74,23 @@ public void GetLoginCredentialsMissingDefault() Assert.IsType(ex); Assert.Equal("Profile name \"default\" not found in credentials file", ex.Message); } + + [Fact] + public void GetLoginCredentialsFromMissingIni() + { + string tempFile = Path.Combine(Directory.GetCurrentDirectory(), "invalid", "file.ini"); + + ClientConfig config = new ClientConfig() + { + ProfileFile = tempFile, + }; + + ClientConfig loginCreds = ProfileCredentialProvider.GetLoginCredentials(config); + + Assert.Null(loginCreds.CompanyId); + Assert.Null(loginCreds.EntityId); + Assert.Null(loginCreds.UserId); + Assert.Null(loginCreds.UserPassword); + } } } \ No newline at end of file diff --git a/Intacct.SDK.Tests/Credentials/SenderCredentialsTest.cs b/Intacct.SDK.Tests/Credentials/SenderCredentialsTest.cs index d33c6993..458e1976 100644 --- a/Intacct.SDK.Tests/Credentials/SenderCredentialsTest.cs +++ b/Intacct.SDK.Tests/Credentials/SenderCredentialsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Credentials/SessionCredentialsTest.cs b/Intacct.SDK.Tests/Credentials/SessionCredentialsTest.cs index d34695ca..0bcdcba1 100644 --- a/Intacct.SDK.Tests/Credentials/SessionCredentialsTest.cs +++ b/Intacct.SDK.Tests/Credentials/SessionCredentialsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentCreateTest.cs index 39023a17..5ba11644 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentDeleteTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentDeleteTest.cs index 56bbc484..ec82cd38 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentLineCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentLineCreateTest.cs index 600fba60..2163ce0f 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentSummaryCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentSummaryCreateTest.cs index b95a9b59..33b85399 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentSummaryCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentSummaryCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestApproveTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestApproveTest.cs index 9efa3a29..7c3aff0b 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestApproveTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestApproveTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestConfirmTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestConfirmTest.cs index f82c7add..180b9be1 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestConfirmTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestConfirmTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestCreateTest.cs index ad2aec88..7a806b1d 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestDeleteTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestDeleteTest.cs index 2fbfc23f..91c31030 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestSendTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestSendTest.cs index 269fdb7e..6fda0fb4 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestSendTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestSendTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestVoidTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestVoidTest.cs index 20b32e06..8e24333a 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestVoidTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentRequestVoidTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentReverseTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentReverseTest.cs index 6f696453..477888e9 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentReverseTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentReverseTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/BillCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/BillCreateTest.cs index d8665927..2bad12b5 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/BillCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/BillCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/BillDeleteTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/BillDeleteTest.cs index e48b0fa6..2be37675 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/BillDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/BillDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/BillLineCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/BillLineCreateTest.cs index 62b3c8ee..abe219a8 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/BillLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/BillLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/BillReverseTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/BillReverseTest.cs index 6f04347c..95451962 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/BillReverseTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/BillReverseTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/BillSummaryCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/BillSummaryCreateTest.cs index df6e2153..7accfb64 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/BillSummaryCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/BillSummaryCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/BillUpdateTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/BillUpdateTest.cs index d7cd5646..62caf6b5 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/BillUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/BillUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/VendorCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/VendorCreateTest.cs index d00adae3..c6d83c9f 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/VendorCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/VendorCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/VendorDeleteTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/VendorDeleteTest.cs index 707aa17a..6e57b5af 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/VendorDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/VendorDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsPayable/VendorUpdateTest.cs b/Intacct.SDK.Tests/Functions/AccountsPayable/VendorUpdateTest.cs index e61bd3ab..1eb72ccb 100644 --- a/Intacct.SDK.Tests/Functions/AccountsPayable/VendorUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsPayable/VendorUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentCreateTest.cs index baad310a..7ba3e5f0 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentDeleteTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentDeleteTest.cs index b5c377b9..08ac3336 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentLineCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentLineCreateTest.cs index d210527f..a60a1012 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentSummaryCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentSummaryCreateTest.cs index e313ad96..f84f5f84 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentSummaryCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentSummaryCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentApplyTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentApplyTest.cs index e657aea8..0460d65f 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentApplyTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentApplyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentCreateTest.cs index fbbfaaaa..373d9a3c 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentItemTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentItemTest.cs index eff4ce74..935150d2 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentItemTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentItemTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentReverseTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentReverseTest.cs index 71f54855..a02addd9 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentReverseTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentReverseTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentSummaryCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentSummaryCreateTest.cs index 3cb47635..64c7d959 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentSummaryCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/ArPaymentSummaryCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerCreateTest.cs index 6854fb77..5a836c41 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerDeleteTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerDeleteTest.cs index c9680bd4..3c1ae391 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerUpdateTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerUpdateTest.cs index 7c6a59c2..be65494c 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/CustomerUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceCreateTest.cs index 02a78b89..661e18b4 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceDeleteTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceDeleteTest.cs index b1ae109e..f2c626b5 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceLineCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceLineCreateTest.cs index d5c441b6..979b7c44 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceReverseTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceReverseTest.cs index 791eb0c1..a0e476d9 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceReverseTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceReverseTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceSummaryCreateTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceSummaryCreateTest.cs index 49785588..b5aa63d7 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceSummaryCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceSummaryCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceUpdateTest.cs b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceUpdateTest.cs index 407b0b33..a5981c71 100644 --- a/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/AccountsReceivable/InvoiceUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/ApiSessionCreateTest.cs b/Intacct.SDK.Tests/Functions/ApiSessionCreateTest.cs index 6d4bafc1..ae8e0ecf 100644 --- a/Intacct.SDK.Tests/Functions/ApiSessionCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/ApiSessionCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -37,5 +37,37 @@ public void GetXmlTest() this.CompareXml(expected, apiFunction); } + + [Fact] + public void GetXmlWithLocationTest() + { + string expected = @" + + + 100 + +"; + + ApiSessionCreate apiFunction = new ApiSessionCreate("unittest"); + apiFunction.EntityId = "100"; + + this.CompareXml(expected, apiFunction); + } + + [Fact] + public void GetXmlWithEmptyLocationTest() + { + string expected = @" + + + + +"; + + ApiSessionCreate apiFunction = new ApiSessionCreate("unittest"); + apiFunction.EntityId = ""; + + this.CompareXml(expected, apiFunction); + } } } \ No newline at end of file diff --git a/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionCreateTest.cs b/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionCreateTest.cs index 6d4d1ec8..86cc9e63 100644 --- a/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionLineCreateTest.cs b/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionLineCreateTest.cs index 84f2a2fe..635cf515 100644 --- a/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionLineUpdateTest.cs b/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionLineUpdateTest.cs index 1e9e9485..be3145f4 100644 --- a/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionLineUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionLineUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionReverseTest.cs b/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionReverseTest.cs index aa4d288c..a72d2ed1 100644 --- a/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionReverseTest.cs +++ b/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionReverseTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionUpdateTest.cs b/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionUpdateTest.cs index ea41bc32..eec348b7 100644 --- a/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/CashManagement/ChargeCardTransactionUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/CashManagement/DepositCreateTest.cs b/Intacct.SDK.Tests/Functions/CashManagement/DepositCreateTest.cs index 18143d5f..e1e9f006 100644 --- a/Intacct.SDK.Tests/Functions/CashManagement/DepositCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/CashManagement/DepositCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/CashManagement/OtherReceiptCreateTest.cs b/Intacct.SDK.Tests/Functions/CashManagement/OtherReceiptCreateTest.cs index 5d17a55a..ebce7637 100644 --- a/Intacct.SDK.Tests/Functions/CashManagement/OtherReceiptCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/CashManagement/OtherReceiptCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/CashManagement/OtherReceiptLineCreateTest.cs b/Intacct.SDK.Tests/Functions/CashManagement/OtherReceiptLineCreateTest.cs index 16016296..539cfc96 100644 --- a/Intacct.SDK.Tests/Functions/CashManagement/OtherReceiptLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/CashManagement/OtherReceiptLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDateTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDateTest.cs index 637a72e4..7ea985b7 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDateTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDateTimeTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDateTimeTest.cs index b9ef6e7f..b6ec8bb6 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDateTimeTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDateTimeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDecimalTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDecimalTest.cs index ae1b7995..6473329b 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDecimalTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToDecimalTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToIntegerTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToIntegerTest.cs index 35ddba21..13de7c51 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToIntegerTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToIntegerTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToNullTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToNullTest.cs index 85e552bc..9568c783 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToNullTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToNullTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToStringTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToStringTest.cs index 3df725bb..a8e944dd 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToStringTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/EqualTo/EqualToStringTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTest.cs index f929b900..b1facc8d 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTimeTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTimeTest.cs index bf2e834d..b253afdf 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTimeTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTimeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDecimalTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDecimalTest.cs index 541a2104..2c6bb50d 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDecimalTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDecimalTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanIntegerTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanIntegerTest.cs index 9a83b7e9..3cfead6b 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanIntegerTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanIntegerTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanStringTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanStringTest.cs index 244a622f..2c328e33 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanStringTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThan/GreaterThanStringTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTest.cs index 313e1bd2..da0bc0cd 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTimeTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTimeTest.cs index f8402db7..3b7d1439 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTimeTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTimeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDecimalTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDecimalTest.cs index 19b120e7..57054246 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDecimalTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDecimalTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToIntegerTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToIntegerTest.cs index 5f055ac4..1bdb897c 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToIntegerTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToIntegerTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToStringTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToStringTest.cs index 4454f177..f8f01055 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToStringTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToStringTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/InList/InListIntegerTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/InList/InListIntegerTest.cs index 07cecb64..993d2bf2 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/InList/InListIntegerTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/InList/InListIntegerTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/InList/InListStringTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/InList/InListStringTest.cs index 2ba9e56b..293b8b63 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/InList/InListStringTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/InList/InListStringTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDateTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDateTest.cs index ebd9232b..e013a647 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDateTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDateTimeTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDateTimeTest.cs index 82ed2542..61b63b8d 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDateTimeTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDateTimeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDecimalTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDecimalTest.cs index 1de5c947..fc352ef7 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDecimalTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanDecimalTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanIntegerTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanIntegerTest.cs index e375fa22..b63eddeb 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanIntegerTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanIntegerTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanStringTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanStringTest.cs index 10634874..2925e6de 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanStringTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThan/LessThanStringTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTest.cs index 0ae7cc73..2563f069 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTimeTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTimeTest.cs index 4afe3302..11b01852 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTimeTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTimeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDecimalTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDecimalTest.cs index 298275a2..fc1c9e66 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDecimalTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDecimalTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToIntegerTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToIntegerTest.cs index c28318f3..f27bc580 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToIntegerTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToIntegerTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToStringTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToStringTest.cs index 93e82707..9b33a58e 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToStringTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToStringTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/Like/LikeStringTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/Like/LikeStringTest.cs index 089bd31e..b3309ab1 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Comparison/Like/LikeStringTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Comparison/Like/LikeStringTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Logical/AndConditionTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Logical/AndConditionTest.cs index c387d497..279a051b 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Logical/AndConditionTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Logical/AndConditionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/Logical/OrConditionTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/Logical/OrConditionTest.cs index 614f3437..c581c771 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/Logical/OrConditionTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/Logical/OrConditionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/Query/QueryStringTest.cs b/Intacct.SDK.Tests/Functions/Common/Query/QueryStringTest.cs index 6373a31e..d534334a 100644 --- a/Intacct.SDK.Tests/Functions/Common/Query/QueryStringTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/Query/QueryStringTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/ReadByNameTest.cs b/Intacct.SDK.Tests/Functions/Common/ReadByNameTest.cs index 682f067b..229a0fcc 100644 --- a/Intacct.SDK.Tests/Functions/Common/ReadByNameTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/ReadByNameTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/ReadByQueryTest.cs b/Intacct.SDK.Tests/Functions/Common/ReadByQueryTest.cs index a4fc60fa..dba8f968 100644 --- a/Intacct.SDK.Tests/Functions/Common/ReadByQueryTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/ReadByQueryTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/ReadMoreTest.cs b/Intacct.SDK.Tests/Functions/Common/ReadMoreTest.cs index d7cd3ca5..12662946 100644 --- a/Intacct.SDK.Tests/Functions/Common/ReadMoreTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/ReadMoreTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Common/ReadTest.cs b/Intacct.SDK.Tests/Functions/Common/ReadTest.cs index 9ea7bfcb..c8e1192c 100644 --- a/Intacct.SDK.Tests/Functions/Common/ReadTest.cs +++ b/Intacct.SDK.Tests/Functions/Common/ReadTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/AllocationCreateTest.cs b/Intacct.SDK.Tests/Functions/Company/AllocationCreateTest.cs index 338b484c..b8b28318 100644 --- a/Intacct.SDK.Tests/Functions/Company/AllocationCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/AllocationCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/AllocationDeleteTest.cs b/Intacct.SDK.Tests/Functions/Company/AllocationDeleteTest.cs index 103945c8..32a41432 100644 --- a/Intacct.SDK.Tests/Functions/Company/AllocationDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/AllocationDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/AllocationUpdateTest.cs b/Intacct.SDK.Tests/Functions/Company/AllocationUpdateTest.cs index b0235ab0..516f961d 100644 --- a/Intacct.SDK.Tests/Functions/Company/AllocationUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/AllocationUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/AttachmentFileTest.cs b/Intacct.SDK.Tests/Functions/Company/AttachmentFileTest.cs index cc0d7e21..fc95c488 100644 --- a/Intacct.SDK.Tests/Functions/Company/AttachmentFileTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/AttachmentFileTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/AttachmentsCreateTest.cs b/Intacct.SDK.Tests/Functions/Company/AttachmentsCreateTest.cs index cf5dc5dd..92074d9d 100644 --- a/Intacct.SDK.Tests/Functions/Company/AttachmentsCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/AttachmentsCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/AttachmentsDeleteTest.cs b/Intacct.SDK.Tests/Functions/Company/AttachmentsDeleteTest.cs index d83d279c..b3c96427 100644 --- a/Intacct.SDK.Tests/Functions/Company/AttachmentsDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/AttachmentsDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderCreateTest.cs b/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderCreateTest.cs index 6bb7be28..60c6fa51 100644 --- a/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderDeleteTest.cs b/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderDeleteTest.cs index 0092d711..100544af 100644 --- a/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderUpdateTest.cs b/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderUpdateTest.cs index f278a1c8..d62f7d9c 100644 --- a/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/AttachmentsFolderUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/AttachmentsUpdateTest.cs b/Intacct.SDK.Tests/Functions/Company/AttachmentsUpdateTest.cs index c70dafe3..bf52b23f 100644 --- a/Intacct.SDK.Tests/Functions/Company/AttachmentsUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/AttachmentsUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/ClassCreateTest.cs b/Intacct.SDK.Tests/Functions/Company/ClassCreateTest.cs index 799f5735..49d596c9 100644 --- a/Intacct.SDK.Tests/Functions/Company/ClassCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/ClassCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/ClassDeleteTest.cs b/Intacct.SDK.Tests/Functions/Company/ClassDeleteTest.cs index deeefc7d..d9055f08 100644 --- a/Intacct.SDK.Tests/Functions/Company/ClassDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/ClassDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/ClassUpdateTest.cs b/Intacct.SDK.Tests/Functions/Company/ClassUpdateTest.cs index 9e392ff9..f641d25c 100644 --- a/Intacct.SDK.Tests/Functions/Company/ClassUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/ClassUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/ContactCreateTest.cs b/Intacct.SDK.Tests/Functions/Company/ContactCreateTest.cs index 1a0256c4..41d75bb7 100644 --- a/Intacct.SDK.Tests/Functions/Company/ContactCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/ContactCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/ContactDeleteTest.cs b/Intacct.SDK.Tests/Functions/Company/ContactDeleteTest.cs index 51a5ac06..76008409 100644 --- a/Intacct.SDK.Tests/Functions/Company/ContactDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/ContactDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/ContactUpdateTest.cs b/Intacct.SDK.Tests/Functions/Company/ContactUpdateTest.cs index 0e59918b..5f950412 100644 --- a/Intacct.SDK.Tests/Functions/Company/ContactUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/ContactUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/DepartmentCreateTest.cs b/Intacct.SDK.Tests/Functions/Company/DepartmentCreateTest.cs index d97c075e..0a579388 100644 --- a/Intacct.SDK.Tests/Functions/Company/DepartmentCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/DepartmentCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/DepartmentDeleteTest.cs b/Intacct.SDK.Tests/Functions/Company/DepartmentDeleteTest.cs index 623e977c..30ab8922 100644 --- a/Intacct.SDK.Tests/Functions/Company/DepartmentDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/DepartmentDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/DepartmentUpdateTest.cs b/Intacct.SDK.Tests/Functions/Company/DepartmentUpdateTest.cs index 51176aef..4d9479cf 100644 --- a/Intacct.SDK.Tests/Functions/Company/DepartmentUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/DepartmentUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/LocationCreateTest.cs b/Intacct.SDK.Tests/Functions/Company/LocationCreateTest.cs index e62b5106..9d5a26f3 100644 --- a/Intacct.SDK.Tests/Functions/Company/LocationCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/LocationCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/LocationDeleteTest.cs b/Intacct.SDK.Tests/Functions/Company/LocationDeleteTest.cs index 17fd2e01..0fa149be 100644 --- a/Intacct.SDK.Tests/Functions/Company/LocationDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/LocationDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/LocationUpdateTest.cs b/Intacct.SDK.Tests/Functions/Company/LocationUpdateTest.cs index cc48eed9..68ad359c 100644 --- a/Intacct.SDK.Tests/Functions/Company/LocationUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/LocationUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/SubscriptionListTest.cs b/Intacct.SDK.Tests/Functions/Company/SubscriptionListTest.cs index 02fd1155..53f0df8c 100644 --- a/Intacct.SDK.Tests/Functions/Company/SubscriptionListTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/SubscriptionListTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/UserCreateTest.cs b/Intacct.SDK.Tests/Functions/Company/UserCreateTest.cs index cd4b00df..f42b5960 100644 --- a/Intacct.SDK.Tests/Functions/Company/UserCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/UserCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/UserEffectivePermissionListTest.cs b/Intacct.SDK.Tests/Functions/Company/UserEffectivePermissionListTest.cs index a7c5f179..3326911c 100644 --- a/Intacct.SDK.Tests/Functions/Company/UserEffectivePermissionListTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/UserEffectivePermissionListTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Company/UserUpdateTest.cs b/Intacct.SDK.Tests/Functions/Company/UserUpdateTest.cs index 0e24a00a..598c4815 100644 --- a/Intacct.SDK.Tests/Functions/Company/UserUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Company/UserUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractCreateTest.cs b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractCreateTest.cs index 3f7e4571..112c4d6b 100644 --- a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractDeleteTest.cs b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractDeleteTest.cs index 61146a3c..4e2873e0 100644 --- a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineCreateTest.cs b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineCreateTest.cs index c414f90c..73f939a6 100644 --- a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineDeleteTest.cs b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineDeleteTest.cs index 39808fad..85dee6c4 100644 --- a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineHoldTest.cs b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineHoldTest.cs index 0c6ea67a..72f961b6 100644 --- a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineHoldTest.cs +++ b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineHoldTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineResumeTest.cs b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineResumeTest.cs index 957aa5c7..15696bb6 100644 --- a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineResumeTest.cs +++ b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineResumeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineUpdateTest.cs b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineUpdateTest.cs index 5eaad45f..cdde3119 100644 --- a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractLineUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractUpdateTest.cs b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractUpdateTest.cs index 1521855e..fe1acd96 100644 --- a/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/ContractsRevMgmt/ContractUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsJobCreateTest.cs b/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsJobCreateTest.cs index 8de1744c..34bad2bb 100644 --- a/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsJobCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsJobCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsObjectDdlGetTest.cs b/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsObjectDdlGetTest.cs index a0014761..e78fa2c3 100644 --- a/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsObjectDdlGetTest.cs +++ b/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsObjectDdlGetTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsObjectListTest.cs b/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsObjectListTest.cs index 82ace681..f3f1bfc8 100644 --- a/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsObjectListTest.cs +++ b/Intacct.SDK.Tests/Functions/DataDeliveryService/DdsObjectListTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeCreateTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeCreateTest.cs index 08c88c3b..5cf38e7f 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeDeleteTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeDeleteTest.cs index 4e8e4620..74c1e6c1 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeUpdateTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeUpdateTest.cs index 4328f175..3c3370bb 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/EmployeeUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentCreateTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentCreateTest.cs index a13a7ebb..f5e5bcc1 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentDeleteTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentDeleteTest.cs index 5baa365f..3070c853 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentLineCreateTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentLineCreateTest.cs index b27d7b17..2500f54b 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseAdjustmentLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportCreateTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportCreateTest.cs index 180b1d40..21a5ed4a 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportDeleteTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportDeleteTest.cs index cc77f023..3bb0a5be 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportLineCreateTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportLineCreateTest.cs index baac8683..0c37506b 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportReverseTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportReverseTest.cs index 0b29bc0f..d2212618 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportReverseTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportReverseTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportSummaryCreateTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportSummaryCreateTest.cs index 6f11ae80..80359087 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportSummaryCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ExpenseReportSummaryCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ReimbursementRequestCreateTest.cs b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ReimbursementRequestCreateTest.cs index d9191ce7..117ecdd1 100644 --- a/Intacct.SDK.Tests/Functions/EmployeeExpenses/ReimbursementRequestCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/EmployeeExpenses/ReimbursementRequestCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/AccountCreateTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/AccountCreateTest.cs index a2d2023f..99e44ba4 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/AccountCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/AccountCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/AccountDeleteTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/AccountDeleteTest.cs index 55d14f0b..908051f5 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/AccountDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/AccountDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/AccountUpdateTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/AccountUpdateTest.cs index 7301099d..bf0a66f9 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/AccountUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/AccountUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryCreateTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryCreateTest.cs index 805779d1..a301c46a 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryDeleteTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryDeleteTest.cs index 0bbf6184..597d9cb3 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryLineCreateTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryLineCreateTest.cs index 422bfaa7..fa3b1318 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/JournalEntryLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountCreateTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountCreateTest.cs index 09d03f11..4ebbe416 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountDeleteTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountDeleteTest.cs index 80888119..09dc6a70 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountUpdateTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountUpdateTest.cs index 4e37a2d5..ba009993 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalAccountUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryCreateTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryCreateTest.cs index d923dd7e..c8a7e8de 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryDeleteTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryDeleteTest.cs index c36195ce..a86ced89 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryLineCreateTest.cs b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryLineCreateTest.cs index 6b5bb942..114d93e6 100644 --- a/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/GeneralLedger/StatisticalJournalEntryLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/GlobalConsolidations/ConsolidationCreateTest.cs b/Intacct.SDK.Tests/Functions/GlobalConsolidations/ConsolidationCreateTest.cs index 2a94881b..81add613 100644 --- a/Intacct.SDK.Tests/Functions/GlobalConsolidations/ConsolidationCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/GlobalConsolidations/ConsolidationCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionCreateTest.cs b/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionCreateTest.cs index 7f402f78..fc8e96e6 100644 --- a/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionDeleteTest.cs b/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionDeleteTest.cs index 6b88b643..afc0ce93 100644 --- a/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionLineCreateTest.cs b/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionLineCreateTest.cs index 30be2bd4..ebb380ef 100644 --- a/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/InventoryControl/InventoryTransactionLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/InventoryControl/ItemCreateTest.cs b/Intacct.SDK.Tests/Functions/InventoryControl/ItemCreateTest.cs index 6eb49baf..595db16c 100644 --- a/Intacct.SDK.Tests/Functions/InventoryControl/ItemCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/InventoryControl/ItemCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/InventoryControl/ItemDeleteTest.cs b/Intacct.SDK.Tests/Functions/InventoryControl/ItemDeleteTest.cs index dbd76652..6975faf2 100644 --- a/Intacct.SDK.Tests/Functions/InventoryControl/ItemDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/InventoryControl/ItemDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/InventoryControl/ItemUpdateTest.cs b/Intacct.SDK.Tests/Functions/InventoryControl/ItemUpdateTest.cs index e921ec21..3bb27232 100644 --- a/Intacct.SDK.Tests/Functions/InventoryControl/ItemUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/InventoryControl/ItemUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/InventoryControl/TransactionItemDetailTest.cs b/Intacct.SDK.Tests/Functions/InventoryControl/TransactionItemDetailTest.cs index e901cff6..c9626e61 100644 --- a/Intacct.SDK.Tests/Functions/InventoryControl/TransactionItemDetailTest.cs +++ b/Intacct.SDK.Tests/Functions/InventoryControl/TransactionItemDetailTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/InventoryControl/TransactionSubtotalCreateTest.cs b/Intacct.SDK.Tests/Functions/InventoryControl/TransactionSubtotalCreateTest.cs index 1cc439af..12cf0535 100644 --- a/Intacct.SDK.Tests/Functions/InventoryControl/TransactionSubtotalCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/InventoryControl/TransactionSubtotalCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseCreateTest.cs b/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseCreateTest.cs index 5041ce33..b8c45b64 100644 --- a/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseDeleteTest.cs b/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseDeleteTest.cs index 90f8ab1d..0fec58ae 100644 --- a/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseUpdateTest.cs b/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseUpdateTest.cs index d1b5f1b6..819c7fb1 100644 --- a/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/InventoryControl/WarehouseUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionCreateTest.cs b/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionCreateTest.cs index 2df8dc17..479cc347 100644 --- a/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionDeleteTest.cs b/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionDeleteTest.cs index b562e59e..068fd919 100644 --- a/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionLineCreateTest.cs b/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionLineCreateTest.cs index 80d25a55..17bf48fa 100644 --- a/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionLineUpdateTest.cs b/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionLineUpdateTest.cs index 09894790..c7efbb37 100644 --- a/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionLineUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionLineUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionUpdateTest.cs b/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionUpdateTest.cs index dc48547a..9605aa75 100644 --- a/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/OrderEntry/OrderEntryTransactionUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/ProjectCreateTest.cs b/Intacct.SDK.Tests/Functions/Projects/ProjectCreateTest.cs index 5969ff2a..334b17c0 100644 --- a/Intacct.SDK.Tests/Functions/Projects/ProjectCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/ProjectCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/ProjectDeleteTest.cs b/Intacct.SDK.Tests/Functions/Projects/ProjectDeleteTest.cs index ae22ffd3..67c0fd6f 100644 --- a/Intacct.SDK.Tests/Functions/Projects/ProjectDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/ProjectDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedCreateTest.cs b/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedCreateTest.cs index ed5ff2fd..c74cfa58 100644 --- a/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedDeleteTest.cs b/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedDeleteTest.cs index 031ebbe8..94888681 100644 --- a/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedUpdateTest.cs b/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedUpdateTest.cs index 0bcc833a..885268c1 100644 --- a/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/ProjectObservedPercentCompletedUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/ProjectUpdateTest.cs b/Intacct.SDK.Tests/Functions/Projects/ProjectUpdateTest.cs index 58b00392..dbda20ef 100644 --- a/Intacct.SDK.Tests/Functions/Projects/ProjectUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/ProjectUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/TaskCreateTest.cs b/Intacct.SDK.Tests/Functions/Projects/TaskCreateTest.cs index 537b7129..afc73f95 100644 --- a/Intacct.SDK.Tests/Functions/Projects/TaskCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/TaskCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/TaskDeleteTest.cs b/Intacct.SDK.Tests/Functions/Projects/TaskDeleteTest.cs index ced0b0c3..4067a7a4 100644 --- a/Intacct.SDK.Tests/Functions/Projects/TaskDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/TaskDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedCreateTest.cs b/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedCreateTest.cs index 99733751..759f125d 100644 --- a/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedDeleteTest.cs b/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedDeleteTest.cs index 44e7f897..5b608589 100644 --- a/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedUpdateTest.cs b/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedUpdateTest.cs index 998b7226..bb94661f 100644 --- a/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/TaskObservedPercentCompletedUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/TaskUpdateTest.cs b/Intacct.SDK.Tests/Functions/Projects/TaskUpdateTest.cs index f3625bfc..a7556a9d 100644 --- a/Intacct.SDK.Tests/Functions/Projects/TaskUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/TaskUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/TimesheetCreateTest.cs b/Intacct.SDK.Tests/Functions/Projects/TimesheetCreateTest.cs index c3661b33..a2397c44 100644 --- a/Intacct.SDK.Tests/Functions/Projects/TimesheetCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/TimesheetCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/TimesheetDeleteTest.cs b/Intacct.SDK.Tests/Functions/Projects/TimesheetDeleteTest.cs index cdd77c52..a7ac8e93 100644 --- a/Intacct.SDK.Tests/Functions/Projects/TimesheetDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/TimesheetDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Projects/TimesheetEntryCreateTest.cs b/Intacct.SDK.Tests/Functions/Projects/TimesheetEntryCreateTest.cs index 38f2237d..7b7abea5 100644 --- a/Intacct.SDK.Tests/Functions/Projects/TimesheetEntryCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Projects/TimesheetEntryCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionCreateTest.cs b/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionCreateTest.cs index dd59df27..b6c3b806 100644 --- a/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionDeleteTest.cs b/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionDeleteTest.cs index 352967ea..c61cc23c 100644 --- a/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionDeleteTest.cs +++ b/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionDeleteTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionLineCreateTest.cs b/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionLineCreateTest.cs index d9480af8..478985dc 100644 --- a/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionLineCreateTest.cs +++ b/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionLineCreateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionLineUpdateTest.cs b/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionLineUpdateTest.cs index a384daa3..3ff4253b 100644 --- a/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionLineUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionLineUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionUpdateTest.cs b/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionUpdateTest.cs index 8a746cc9..84c75eba 100644 --- a/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionUpdateTest.cs +++ b/Intacct.SDK.Tests/Functions/Purchasing/PurchasingTransactionUpdateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK.Tests/Intacct.SDK.Tests.csproj b/Intacct.SDK.Tests/Intacct.SDK.Tests.csproj index c1aba542..5856cf80 100644 --- a/Intacct.SDK.Tests/Intacct.SDK.Tests.csproj +++ b/Intacct.SDK.Tests/Intacct.SDK.Tests.csproj @@ -1,12 +1,12 @@  - net461;netcoreapp1.0;netcoreapp2.0 + net461;netcoreapp1.0;netcoreapp2.0;netcoreapp2.1 false - - - + + + diff --git a/Intacct.SDK.Tests/OnlineClientTest.cs b/Intacct.SDK.Tests/OnlineClientTest.cs index d06177e5..ad2ec8a3 100644 --- a/Intacct.SDK.Tests/OnlineClientTest.cs +++ b/Intacct.SDK.Tests/OnlineClientTest.cs @@ -38,6 +38,7 @@ public async Task ExecuteTest() success testuser testcompany + 2015-12-06T15:57:08-08:00 @@ -48,6 +49,7 @@ public async Task ExecuteTest() unittest.. https://unittest.intacct.com/ia/xml/xmlgw.phtml + @@ -99,6 +101,7 @@ public async Task ExecuteResultExceptionTest() success testuser testcompany + 2015-12-06T15:57:08-08:00 @@ -142,7 +145,7 @@ public async Task ExecuteResultExceptionTest() var ex = await Record.ExceptionAsync(() => client.Execute(new ApiSessionCreate("func1UnitTest"))); Assert.IsType(ex); - Assert.Equal("Result status: failure for Control ID: func1UnitTest", ex.Message); + Assert.Equal("Result status: failure for Control ID: func1UnitTest - Get API Session Failed Something went wrong", ex.Message); } [Fact] @@ -162,6 +165,7 @@ public async Task ExecuteBatchTransactionResultExceptionTest() success testuser testcompany + 2015-12-06T15:57:08-08:00 @@ -235,7 +239,7 @@ public async Task ExecuteBatchTransactionResultExceptionTest() var ex = await Record.ExceptionAsync(() => client.ExecuteBatch(content, requestConfig)); Assert.IsType(ex); - Assert.Equal("Result status: failure for Control ID: func2UnitTest", ex.Message); + Assert.Equal("Result status: failure for Control ID: func2UnitTest - Get API Session Failed Something went wrong - XL03000009 The entire transaction in this operation has been rolled back due to an error.", ex.Message); } [Fact] @@ -255,6 +259,7 @@ public async Task LoggerTest() success testuser testcompany + 2015-12-06T15:57:08-08:00 diff --git a/Intacct.SDK.Tests/SessionProviderTest.cs b/Intacct.SDK.Tests/SessionProviderTest.cs index 57e2e9a7..9c1dd51b 100644 --- a/Intacct.SDK.Tests/SessionProviderTest.cs +++ b/Intacct.SDK.Tests/SessionProviderTest.cs @@ -30,6 +30,7 @@ public async Task FromLoginCredentialsTest() success testuser testcompany + 2015-12-06T15:57:08-08:00 @@ -40,6 +41,7 @@ public async Task FromLoginCredentialsTest() fAkESesSiOnId.. https://unittest.intacct.com/ia/xml/xmlgw.phtml + @@ -73,6 +75,73 @@ public async Task FromLoginCredentialsTest() Assert.Equal("fAkESesSiOnId..", sessionCreds.SessionId); Assert.Equal("https://unittest.intacct.com/ia/xml/xmlgw.phtml", sessionCreds.EndpointUrl); + Assert.Equal("", sessionCreds.EntityId); + } + + [Fact] + public async Task FromLoginCredentialsWithEntityTest() + { + string xml = @" + + + success + testsenderid + sessionProvider + false + 3.0 + + + + success + testuser + testcompany + testentity + 2015-12-06T15:57:08-08:00 + + + success + getSession + testControlId + + + fAkESesSiOnId.. + https://unittest.intacct.com/ia/xml/xmlgw.phtml + testentity + + + + +"; + + HttpResponseMessage mockResponse1 = new HttpResponseMessage() + { + StatusCode = System.Net.HttpStatusCode.OK, + Content = new StringContent(xml) + }; + + List mockResponses = new List + { + mockResponse1, + }; + + MockHandler mockHandler = new MockHandler(mockResponses); + + ClientConfig config = new ClientConfig() + { + SenderId = "testsenderid", + SenderPassword = "pass123!", + CompanyId = "testcompany", + EntityId= "testentity", + UserId = "testuser", + UserPassword = "testpass", + MockHandler = mockHandler, + }; + + ClientConfig sessionCreds = await SessionProvider.Factory(config); + + Assert.Equal("fAkESesSiOnId..", sessionCreds.SessionId); + Assert.Equal("https://unittest.intacct.com/ia/xml/xmlgw.phtml", sessionCreds.EndpointUrl); + Assert.Equal("testentity", sessionCreds.EntityId); } [Fact] @@ -92,6 +161,7 @@ public async Task FromSessionCredentialsTest() success testuser testcompany + 2015-12-06T15:57:08-08:00 @@ -102,6 +172,7 @@ public async Task FromSessionCredentialsTest() fAkESesSiOnId.. https://unittest.intacct.com/ia/xml/xmlgw.phtml + @@ -134,6 +205,137 @@ public async Task FromSessionCredentialsTest() Assert.Equal("fAkESesSiOnId..", sessionCreds.SessionId); Assert.Equal("https://unittest.intacct.com/ia/xml/xmlgw.phtml", sessionCreds.EndpointUrl); + Assert.Equal("", sessionCreds.EntityId); + } + + [Fact] + public async Task FromTopLevelSessionCredentialsWithEntityOverrideTest() + { + string xml = @" + + + success + testsenderid + sessionProvider + false + 3.0 + + + + success + testuser + testcompany + + 2015-12-06T15:57:08-08:00 + + + success + getSession + testControlId + + + fAkESesSiOnId.. + https://unittest.intacct.com/ia/xml/xmlgw.phtml + testentity + + + + +"; + + HttpResponseMessage mockResponse1 = new HttpResponseMessage() + { + StatusCode = System.Net.HttpStatusCode.OK, + Content = new StringContent(xml) + }; + + List mockResponses = new List + { + mockResponse1, + }; + + MockHandler mockHandler = new MockHandler(mockResponses); + + ClientConfig config = new ClientConfig() + { + SenderId = "testsenderid", + SenderPassword = "pass123!", + SessionId = "fAkESesSiOnId..", + EndpointUrl = "https://unittest.intacct.com/ia/xml/xmlgw.phtml", + MockHandler = mockHandler, + EntityId = "testentity", + }; + + ClientConfig sessionCreds = await SessionProvider.Factory(config); + + Assert.Equal("fAkESesSiOnId..", sessionCreds.SessionId); + Assert.Equal("https://unittest.intacct.com/ia/xml/xmlgw.phtml", sessionCreds.EndpointUrl); + Assert.Equal("testentity", sessionCreds.EntityId); + } + + [Fact] + public async Task FromPrivateEntitySessionCredentialsWithDifferentEntityOverrideTest() + { + string xml = @" + + + success + testsenderid + sessionProvider + false + 3.0 + + + + success + testuser + testcompany + entityA + 2015-12-06T15:57:08-08:00 + + + success + getSession + testControlId + + + EntityBSession.. + https://unittest.intacct.com/ia/xml/xmlgw.phtml + entityB + + + + +"; + + HttpResponseMessage mockResponse1 = new HttpResponseMessage() + { + StatusCode = System.Net.HttpStatusCode.OK, + Content = new StringContent(xml) + }; + + List mockResponses = new List + { + mockResponse1, + }; + + MockHandler mockHandler = new MockHandler(mockResponses); + + ClientConfig config = new ClientConfig() + { + SenderId = "testsenderid", + SenderPassword = "pass123!", + SessionId = "EntityAsession..", + EndpointUrl = "https://unittest.intacct.com/ia/xml/xmlgw.phtml", + MockHandler = mockHandler, + EntityId = "entityB", + }; + + ClientConfig sessionCreds = await SessionProvider.Factory(config); + + Assert.Equal("EntityBSession..", sessionCreds.SessionId); + Assert.Equal("https://unittest.intacct.com/ia/xml/xmlgw.phtml", sessionCreds.EndpointUrl); + Assert.Equal("entityB", sessionCreds.EntityId); } [Fact] @@ -153,6 +355,7 @@ public async Task FromSessionCredentialsUsingEnvironmentSenderTest() success testuser testcompany + 2015-12-06T15:57:08-08:00 @@ -163,6 +366,7 @@ public async Task FromSessionCredentialsUsingEnvironmentSenderTest() fAkESesSiOnId.. https://unittest.intacct.com/ia/xml/xmlgw.phtml + diff --git a/Intacct.SDK.Tests/Xml/AbstractResponseTest.cs b/Intacct.SDK.Tests/Xml/AbstractResponseTest.cs index 7b44c809..70f1fc50 100644 --- a/Intacct.SDK.Tests/Xml/AbstractResponseTest.cs +++ b/Intacct.SDK.Tests/Xml/AbstractResponseTest.cs @@ -104,7 +104,7 @@ public void ControlBlockFailureTest() var ex = Record.Exception(() => new MockAbstractResponse(stream)); Assert.IsType(ex); - Assert.Equal("Response control status failure", ex.Message); + Assert.Equal("Response control status failure - XL03000006 test is not a valid transport policy.", ex.Message); } } } \ No newline at end of file diff --git a/Intacct.SDK.Tests/Xml/OnlineResponseTest.cs b/Intacct.SDK.Tests/Xml/OnlineResponseTest.cs index 4bc853b2..29199dc0 100644 --- a/Intacct.SDK.Tests/Xml/OnlineResponseTest.cs +++ b/Intacct.SDK.Tests/Xml/OnlineResponseTest.cs @@ -29,6 +29,7 @@ public void GetOperationTest() success fakeuser fakecompany + 2015-10-22T20:58:27-07:00 @@ -39,6 +40,7 @@ public void GetOperationTest() fAkESesSiOnId.. https://api.intacct.com/ia/xml/xmlgw.phtml + @@ -99,6 +101,7 @@ public void AuthenticationFailureTest() failure fakeuser fakecompany + @@ -120,7 +123,7 @@ public void AuthenticationFailureTest() var ex = Record.Exception(() => new OnlineResponse(stream)); Assert.IsType(ex); - Assert.Equal("Response authentication status failure", ex.Message); + Assert.Equal("Response authentication status failure - XL03000006 Sign-in information is incorrect", ex.Message); } [Fact] @@ -167,6 +170,7 @@ public void MissingResultBlockTest() success fakeuser fakecompany + 2015-10-22T20:58:27-07:00 @@ -183,5 +187,37 @@ public void MissingResultBlockTest() Assert.IsType(ex); Assert.Equal("Result block is missing from operation element", ex.Message); } + + [Fact] + public void ThrowResponseExceptionWithErrorsTest() + { + string xml = @" + + + failure + + + + + + PL04000055 + + This company is a demo company and has expired. + + + +"; + + Stream stream = new MemoryStream(); + StreamWriter streamWriter = new StreamWriter(stream); + streamWriter.Write(xml); + streamWriter.Flush(); + + stream.Position = 0; + + var ex = Record.Exception(() => new OnlineResponse(stream)); + Assert.IsType(ex); + Assert.Equal("Response control status failure - PL04000055 This company is a demo company and has expired.", ex.Message); + } } } \ No newline at end of file diff --git a/Intacct.SDK.Tests/Xml/Request/LoginAuthenticationTest.cs b/Intacct.SDK.Tests/Xml/Request/LoginAuthenticationTest.cs index 14e89eeb..2d8299a3 100644 --- a/Intacct.SDK.Tests/Xml/Request/LoginAuthenticationTest.cs +++ b/Intacct.SDK.Tests/Xml/Request/LoginAuthenticationTest.cs @@ -27,6 +27,42 @@ public void WriteXmlTest() this.CompareXml(expected, loginAuth); } + + [Fact] + public void WriteXmlWithEntityTest() + { + string expected = @" + + + testuser + testcompany + testpass + testentity + +"; + + LoginAuthentication loginAuth = new LoginAuthentication("testuser", "testcompany", "testpass", "testentity"); + + this.CompareXml(expected, loginAuth); + } + + [Fact] + public void WriteXmlWithEmptyEntityTest() + { + string expected = @" + + + testuser + testcompany + testpass + + +"; + + LoginAuthentication loginAuth = new LoginAuthentication("testuser", "testcompany", "testpass", ""); + + this.CompareXml(expected, loginAuth); + } [Fact] public void InvalidCompanyIdTest() diff --git a/Intacct.SDK.Tests/Xml/RequestHandlerTest.cs b/Intacct.SDK.Tests/Xml/RequestHandlerTest.cs index 89dde662..c964786d 100644 --- a/Intacct.SDK.Tests/Xml/RequestHandlerTest.cs +++ b/Intacct.SDK.Tests/Xml/RequestHandlerTest.cs @@ -38,6 +38,7 @@ public async Task MockExecuteSynchronousTest() success testuser testcompany + 2015-12-06T15:57:08-08:00 @@ -48,6 +49,7 @@ public async Task MockExecuteSynchronousTest() unittest.. https://unittest.intacct.com/ia/xml/xmlgw.phtml + @@ -190,6 +192,7 @@ public async Task MockRetryTest() success testuser testcompany + 2015-12-06T15:57:08-08:00 @@ -200,6 +203,7 @@ public async Task MockRetryTest() unittest.. https://unittest.intacct.com/ia/xml/xmlgw.phtml + @@ -353,7 +357,7 @@ public async Task Mock400LevelErrorWithXmlResponseTest() var ex = await Record.ExceptionAsync(() => requestHandler.ExecuteOnline(contentBlock)); Assert.IsType(ex); - Assert.Equal("Response control status failure", ex.Message); + Assert.Equal("Response control status failure - XMLGW_JPP0002 Sign-in information is incorrect. Please check your request.", ex.Message); } [Fact] @@ -410,6 +414,7 @@ public async Task MockExecuteWithDebugLoggerTest() success testuser testcompany + 2015-12-06T15:57:08-08:00 @@ -420,6 +425,7 @@ public async Task MockExecuteWithDebugLoggerTest() unittest.. https://unittest.intacct.com/ia/xml/xmlgw.phtml + diff --git a/Intacct.SDK.Tests/Xml/Response/AuthenticationTest.cs b/Intacct.SDK.Tests/Xml/Response/AuthenticationTest.cs index 68e0126b..d9d61eed 100644 --- a/Intacct.SDK.Tests/Xml/Response/AuthenticationTest.cs +++ b/Intacct.SDK.Tests/Xml/Response/AuthenticationTest.cs @@ -28,6 +28,7 @@ public void SuccessTest() success fakeuser fakecompany + 2015-10-24T18:56:52-07:00 @@ -38,6 +39,7 @@ public void SuccessTest() faKEsesSiOnId.. https://api.intacct.com/ia/xml/xmlgw.phtml + @@ -56,6 +58,7 @@ public void SuccessTest() Assert.Equal("success", auth.Status); Assert.Equal("fakeuser", auth.UserId); Assert.Equal("fakecompany", auth.CompanyId); + Assert.Equal("", auth.EntityId); } [Fact] @@ -75,6 +78,7 @@ public void MissingStatusElementTest() fakeuser fakecompany + 2015-10-24T18:56:52-07:00 @@ -110,6 +114,7 @@ public void MissingUserIdElementTest() success fakecompany + 2015-10-24T18:56:52-07:00 @@ -145,6 +150,7 @@ public void MissingCompanyIdElementTest() success fakeuser + 2015-10-24T18:56:52-07:00 diff --git a/Intacct.SDK.Tests/Xml/Response/ResultTest.cs b/Intacct.SDK.Tests/Xml/Response/ResultTest.cs index c5cce1b8..deb61fdf 100644 --- a/Intacct.SDK.Tests/Xml/Response/ResultTest.cs +++ b/Intacct.SDK.Tests/Xml/Response/ResultTest.cs @@ -30,6 +30,7 @@ public void SuccessTest() success fakeuser fakecompany + 2015-10-25T10:08:34-07:00 @@ -75,6 +76,7 @@ public void GetErrorsTest() success fakeuser fakecompany + 2015-10-25T11:07:22-07:00 @@ -123,6 +125,7 @@ public void MissingStatusElementTest() success fakeuser fakecompany + 2015-10-25T10:08:34-07:00 @@ -163,6 +166,7 @@ public void MissingFunctionElementTest() success fakeuser fakecompany + 2015-10-25T10:08:34-07:00 @@ -203,6 +207,7 @@ public void MissingControlIdElementTest() success fakeuser fakecompany + 2015-10-25T10:08:34-07:00 @@ -243,6 +248,7 @@ public void StatusFailureTest() success fakeuser fakecompany + 2015-10-25T10:08:34-07:00 @@ -273,7 +279,7 @@ public void StatusFailureTest() var ex = Record.Exception(() => result.EnsureStatusNotFailure()); Assert.IsType(ex); - Assert.Equal("Result status: failure for Control ID: testFunctionId", ex.Message); + Assert.Equal("Result status: failure for Control ID: testFunctionId - XXX Object definition VENDOR2 not found", ex.Message); } [Fact] @@ -293,6 +299,7 @@ public void StatusAbortedTest() success fakeuser fakecompany + 2015-10-25T10:08:34-07:00 @@ -329,7 +336,7 @@ public void StatusAbortedTest() var ex = Record.Exception(() => result.EnsureStatusSuccess()); Assert.IsType(ex); - Assert.Equal("Result status: aborted for Control ID: testFunctionId", ex.Message); + Assert.Equal("Result status: aborted for Control ID: testFunctionId - Query Failed Object definition VENDOR9 not found - XL03000009 The entire transaction in this operation has been rolled back due to an error.", ex.Message); } [Fact] @@ -349,6 +356,7 @@ public void StatusNotFailuredOnAbortedTest() success fakeuser fakecompany + 2015-10-25T10:08:34-07:00 @@ -402,6 +410,7 @@ public void LegacyGetListClassTest() success fakeuser fakecompany + 2015-10-25T10:08:34-07:00 @@ -464,6 +473,7 @@ public void ReadByQueryClassTest() success fakeuser fakecompany + 2015-10-25T10:08:34-07:00 @@ -527,6 +537,7 @@ public void LegacyCreateClassKeyTest() success fakeuser fakecompany + 2015-10-25T10:08:34-07:00 diff --git a/Intacct.SDK.Tests/Xml/XmlObjectTestHelper.cs b/Intacct.SDK.Tests/Xml/XmlObjectTestHelper.cs index 444a16c6..268f21b0 100644 --- a/Intacct.SDK.Tests/Xml/XmlObjectTestHelper.cs +++ b/Intacct.SDK.Tests/Xml/XmlObjectTestHelper.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/AbstractClient.cs b/Intacct.SDK/AbstractClient.cs index 954c9a0d..8bde2238 100644 --- a/Intacct.SDK/AbstractClient.cs +++ b/Intacct.SDK/AbstractClient.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/ClientConfig.cs b/Intacct.SDK/ClientConfig.cs index 5bd89582..44edf3b7 100644 --- a/Intacct.SDK/ClientConfig.cs +++ b/Intacct.SDK/ClientConfig.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -37,6 +37,8 @@ public class ClientConfig public string CompanyId; + public string EntityId; + public string UserId; public string UserPassword; diff --git a/Intacct.SDK/Credentials/Endpoint.cs b/Intacct.SDK/Credentials/Endpoint.cs index e13ef5cc..fdd65d5d 100644 --- a/Intacct.SDK/Credentials/Endpoint.cs +++ b/Intacct.SDK/Credentials/Endpoint.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Credentials/ICredentials.cs b/Intacct.SDK/Credentials/ICredentials.cs index 840d999a..9a49e513 100644 --- a/Intacct.SDK/Credentials/ICredentials.cs +++ b/Intacct.SDK/Credentials/ICredentials.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Credentials/LoginCredentials.cs b/Intacct.SDK/Credentials/LoginCredentials.cs index f8647c4e..ac53d40b 100644 --- a/Intacct.SDK/Credentials/LoginCredentials.cs +++ b/Intacct.SDK/Credentials/LoginCredentials.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -24,6 +24,8 @@ public class LoginCredentials : ICredentials public const string CompanyIdEnvName = "INTACCT_COMPANY_ID"; + public const string EntityIdEnvName = "INTACCT_ENTITY_ID"; + public const string UserIdEnvName = "INTACCT_USER_ID"; public const string UserPasswordEnvName = "INTACCT_USER_PASSWORD"; @@ -32,6 +34,8 @@ public class LoginCredentials : ICredentials public string CompanyId; + public string EntityId; + public string UserId; public string Password; @@ -54,6 +58,11 @@ public LoginCredentials(ClientConfig config, SenderCredentials senderCreds) { config.CompanyId = Environment.GetEnvironmentVariable(LoginCredentials.CompanyIdEnvName); } + + if (string.IsNullOrEmpty(config.EntityId)) + { + config.EntityId = Environment.GetEnvironmentVariable(LoginCredentials.EntityIdEnvName); + } if (string.IsNullOrEmpty(config.UserId)) { config.UserId = Environment.GetEnvironmentVariable(LoginCredentials.UserIdEnvName); @@ -76,6 +85,11 @@ public LoginCredentials(ClientConfig config, SenderCredentials senderCreds) { config.CompanyId = profile.CompanyId; } + + if (!string.IsNullOrEmpty(profile.EntityId)) + { + config.EntityId = profile.EntityId; + } if (!string.IsNullOrEmpty(profile.UserId)) { config.UserId = profile.UserId; @@ -91,6 +105,7 @@ public LoginCredentials(ClientConfig config, SenderCredentials senderCreds) throw new ArgumentException("Required Company ID not supplied in config or env variable \"" + LoginCredentials.CompanyIdEnvName + "\""); } + // Entity ID is not required, no Error if (string.IsNullOrEmpty(config.UserId)) { throw new ArgumentException("Required User ID not supplied in config or env variable \"" + @@ -103,6 +118,7 @@ public LoginCredentials(ClientConfig config, SenderCredentials senderCreds) } this.CompanyId = config.CompanyId; + this.EntityId = config.EntityId; this.UserId = config.UserId; this.Password = config.UserPassword; this.SenderCredentials = senderCreds; diff --git a/Intacct.SDK/Credentials/ProfileCredentialProvider.cs b/Intacct.SDK/Credentials/ProfileCredentialProvider.cs index effd77d6..64f01beb 100644 --- a/Intacct.SDK/Credentials/ProfileCredentialProvider.cs +++ b/Intacct.SDK/Credentials/ProfileCredentialProvider.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -30,9 +30,12 @@ public static class ProfileCredentialProvider public static ClientConfig GetLoginCredentials(ClientConfig config) { ClientConfig creds = new ClientConfig(); + if (!ProfileFileExists(config)) return creds; + IConfigurationSection data = GetIniProfileData(config); string companyId = data.GetSection("company_id").Value; + string entityId = data.GetSection("entity_id").Value; string userId = data.GetSection("user_id").Value; string userPassword = data.GetSection("user_password").Value; @@ -40,6 +43,11 @@ public static ClientConfig GetLoginCredentials(ClientConfig config) { creds.CompanyId = companyId; } + + if (!string.IsNullOrEmpty(entityId)) + { + creds.EntityId = entityId; + } if (!string.IsNullOrEmpty(userId)) { creds.UserId = userId; @@ -55,6 +63,8 @@ public static ClientConfig GetLoginCredentials(ClientConfig config) public static ClientConfig GetSenderCredentials(ClientConfig config) { ClientConfig creds = new ClientConfig(); + if (!ProfileFileExists(config)) return creds; + IConfigurationSection data = GetIniProfileData(config); string senderId = data.GetSection("sender_id").Value; @@ -100,6 +110,16 @@ public static string GetHomeDirProfile() return profile; } + + private static bool ProfileFileExists(ClientConfig config) + { + if (string.IsNullOrEmpty(config.ProfileFile)) + { + config.ProfileFile = GetHomeDirProfile(); + } + + return File.Exists(config.ProfileFile); + } private static IConfigurationSection GetIniProfileData(ClientConfig config) { @@ -107,10 +127,6 @@ private static IConfigurationSection GetIniProfileData(ClientConfig config) { config.ProfileName = ProfileCredentialProvider.DefaultProfileName; } - if (string.IsNullOrEmpty(config.ProfileFile)) - { - config.ProfileFile = GetHomeDirProfile(); - } ConfigurationBuilder builder = new ConfigurationBuilder(); builder.SetBasePath(Path.GetDirectoryName(config.ProfileFile)); diff --git a/Intacct.SDK/Credentials/SenderCredentials.cs b/Intacct.SDK/Credentials/SenderCredentials.cs index 8aa93d6d..370b785a 100644 --- a/Intacct.SDK/Credentials/SenderCredentials.cs +++ b/Intacct.SDK/Credentials/SenderCredentials.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Credentials/SessionCredentials.cs b/Intacct.SDK/Credentials/SessionCredentials.cs index 1b9c9e25..c099c6cd 100644 --- a/Intacct.SDK/Credentials/SessionCredentials.cs +++ b/Intacct.SDK/Credentials/SessionCredentials.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Exceptions/IntacctException.cs b/Intacct.SDK/Exceptions/IntacctException.cs index 4c17b778..f80f20ed 100644 --- a/Intacct.SDK/Exceptions/IntacctException.cs +++ b/Intacct.SDK/Exceptions/IntacctException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Exceptions/ResponseException.cs b/Intacct.SDK/Exceptions/ResponseException.cs index 1d1f47df..bf142ff4 100644 --- a/Intacct.SDK/Exceptions/ResponseException.cs +++ b/Intacct.SDK/Exceptions/ResponseException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -27,17 +27,30 @@ public ResponseException() { } - public ResponseException(string message) : base(message) + public ResponseException(string message) + : base(message) { } - public ResponseException(string message, List errors) : base(message) + public ResponseException(string message, List errors) + : base(ImplodeErrorsToMessage(message, errors)) { Errors = errors; } - public ResponseException(string message, List errors, Exception innerException) : base(message, innerException) + public ResponseException(string message, List errors, Exception innerException) + : base(ImplodeErrorsToMessage(message, errors), innerException) { } + + private static string ImplodeErrorsToMessage(string message, List errors) + { + if (errors.Count > 0) + { + message = message + " - " + string.Join(" - ", errors); + } + + return message; + } } } \ No newline at end of file diff --git a/Intacct.SDK/Exceptions/ResultException.cs b/Intacct.SDK/Exceptions/ResultException.cs index b1e60b1b..ce7b29c4 100644 --- a/Intacct.SDK/Exceptions/ResultException.cs +++ b/Intacct.SDK/Exceptions/ResultException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -20,21 +20,23 @@ namespace Intacct.SDK.Exceptions { public class ResultException: ResponseException { - + public ResultException() { } - - public ResultException(string message) : base(message) + + public ResultException(string message) + : base(message) { } - public ResultException(string message, List errors) : base(message) + public ResultException(string message, List errors) + : base(message, errors) { - this.Errors = errors; } - public ResultException(string message, List errors, Exception innerException) : base(message, errors, innerException) + public ResultException(string message, List errors, Exception innerException) + : base(message, errors, innerException) { } } diff --git a/Intacct.SDK/Functions/AbstractFunction.cs b/Intacct.SDK/Functions/AbstractFunction.cs index 2c128409..5f68d128 100644 --- a/Intacct.SDK/Functions/AbstractFunction.cs +++ b/Intacct.SDK/Functions/AbstractFunction.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustment.cs b/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustment.cs index b5526127..7ec12125 100644 --- a/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustment.cs +++ b/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustment.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustmentLine.cs b/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustmentLine.cs index 4788ff6b..ac26e403 100644 --- a/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustmentLine.cs +++ b/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustmentLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustmentSummary.cs b/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustmentSummary.cs index a6e12780..f9d571e1 100644 --- a/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustmentSummary.cs +++ b/Intacct.SDK/Functions/AccountsPayable/AbstractApAdjustmentSummary.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/AbstractApPayment.cs b/Intacct.SDK/Functions/AccountsPayable/AbstractApPayment.cs index 11e96166..87924286 100644 --- a/Intacct.SDK/Functions/AccountsPayable/AbstractApPayment.cs +++ b/Intacct.SDK/Functions/AccountsPayable/AbstractApPayment.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/AbstractApPaymentRequest.cs b/Intacct.SDK/Functions/AccountsPayable/AbstractApPaymentRequest.cs index 1d3e6337..a76b9b17 100644 --- a/Intacct.SDK/Functions/AccountsPayable/AbstractApPaymentRequest.cs +++ b/Intacct.SDK/Functions/AccountsPayable/AbstractApPaymentRequest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/AbstractBill.cs b/Intacct.SDK/Functions/AccountsPayable/AbstractBill.cs index 14f77958..b9aa2c11 100644 --- a/Intacct.SDK/Functions/AccountsPayable/AbstractBill.cs +++ b/Intacct.SDK/Functions/AccountsPayable/AbstractBill.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/AbstractBillLine.cs b/Intacct.SDK/Functions/AccountsPayable/AbstractBillLine.cs index 22b26550..8f8704d4 100644 --- a/Intacct.SDK/Functions/AccountsPayable/AbstractBillLine.cs +++ b/Intacct.SDK/Functions/AccountsPayable/AbstractBillLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/AbstractBillSummary.cs b/Intacct.SDK/Functions/AccountsPayable/AbstractBillSummary.cs index 7dcd0dec..c90db2b9 100644 --- a/Intacct.SDK/Functions/AccountsPayable/AbstractBillSummary.cs +++ b/Intacct.SDK/Functions/AccountsPayable/AbstractBillSummary.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/AbstractVendor.cs b/Intacct.SDK/Functions/AccountsPayable/AbstractVendor.cs index 2113fb35..ef2cfaa9 100644 --- a/Intacct.SDK/Functions/AccountsPayable/AbstractVendor.cs +++ b/Intacct.SDK/Functions/AccountsPayable/AbstractVendor.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentCreate.cs b/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentCreate.cs index 84d4bb06..49867d8e 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentCreate.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentDelete.cs b/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentDelete.cs index 0855c80c..4188308a 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentDelete.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentLineCreate.cs b/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentLineCreate.cs index d89e6469..d37e7e2f 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentLineCreate.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentSummaryCreate.cs b/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentSummaryCreate.cs index d72f9380..db14b728 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentSummaryCreate.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApAdjustmentSummaryCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestApprove.cs b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestApprove.cs index d9cd92f5..747bd8f9 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestApprove.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestApprove.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestConfirm.cs b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestConfirm.cs index fddeacb3..f83e5b55 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestConfirm.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestConfirm.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestCreate.cs b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestCreate.cs index 18b1ca6e..4ce0afbe 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestCreate.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestDelete.cs b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestDelete.cs index 1f7881f8..2c71b915 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestDelete.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestItem.cs b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestItem.cs index 5760cd28..58029ad4 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestItem.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestItem.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestSend.cs b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestSend.cs index 32051b19..f51cbab8 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestSend.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestSend.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestVoid.cs b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestVoid.cs index fb544baa..645cc05d 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestVoid.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApPaymentRequestVoid.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/ApPaymentReverse.cs b/Intacct.SDK/Functions/AccountsPayable/ApPaymentReverse.cs index 519ed339..47069157 100644 --- a/Intacct.SDK/Functions/AccountsPayable/ApPaymentReverse.cs +++ b/Intacct.SDK/Functions/AccountsPayable/ApPaymentReverse.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/BillCreate.cs b/Intacct.SDK/Functions/AccountsPayable/BillCreate.cs index 36ee1082..38846507 100644 --- a/Intacct.SDK/Functions/AccountsPayable/BillCreate.cs +++ b/Intacct.SDK/Functions/AccountsPayable/BillCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/BillDelete.cs b/Intacct.SDK/Functions/AccountsPayable/BillDelete.cs index 00a61041..48d2a8b9 100644 --- a/Intacct.SDK/Functions/AccountsPayable/BillDelete.cs +++ b/Intacct.SDK/Functions/AccountsPayable/BillDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/BillLineCreate.cs b/Intacct.SDK/Functions/AccountsPayable/BillLineCreate.cs index cc143445..192e39dc 100644 --- a/Intacct.SDK/Functions/AccountsPayable/BillLineCreate.cs +++ b/Intacct.SDK/Functions/AccountsPayable/BillLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/BillLineUpdate.cs b/Intacct.SDK/Functions/AccountsPayable/BillLineUpdate.cs index 6e1782c6..396c4430 100644 --- a/Intacct.SDK/Functions/AccountsPayable/BillLineUpdate.cs +++ b/Intacct.SDK/Functions/AccountsPayable/BillLineUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/BillReverse.cs b/Intacct.SDK/Functions/AccountsPayable/BillReverse.cs index 01d23fa0..eacea2b4 100644 --- a/Intacct.SDK/Functions/AccountsPayable/BillReverse.cs +++ b/Intacct.SDK/Functions/AccountsPayable/BillReverse.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/BillSummaryCreate.cs b/Intacct.SDK/Functions/AccountsPayable/BillSummaryCreate.cs index 4a97c2be..28a90192 100644 --- a/Intacct.SDK/Functions/AccountsPayable/BillSummaryCreate.cs +++ b/Intacct.SDK/Functions/AccountsPayable/BillSummaryCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/BillUpdate.cs b/Intacct.SDK/Functions/AccountsPayable/BillUpdate.cs index 906d7a6d..6fb17ac0 100644 --- a/Intacct.SDK/Functions/AccountsPayable/BillUpdate.cs +++ b/Intacct.SDK/Functions/AccountsPayable/BillUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/VendorCreate.cs b/Intacct.SDK/Functions/AccountsPayable/VendorCreate.cs index 694fefbf..00c072fc 100644 --- a/Intacct.SDK/Functions/AccountsPayable/VendorCreate.cs +++ b/Intacct.SDK/Functions/AccountsPayable/VendorCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/VendorDelete.cs b/Intacct.SDK/Functions/AccountsPayable/VendorDelete.cs index 7d6b30fb..1e3990b9 100644 --- a/Intacct.SDK/Functions/AccountsPayable/VendorDelete.cs +++ b/Intacct.SDK/Functions/AccountsPayable/VendorDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsPayable/VendorUpdate.cs b/Intacct.SDK/Functions/AccountsPayable/VendorUpdate.cs index e93c5075..41d4b2d9 100644 --- a/Intacct.SDK/Functions/AccountsPayable/VendorUpdate.cs +++ b/Intacct.SDK/Functions/AccountsPayable/VendorUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustment.cs b/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustment.cs index 191920be..12deaf42 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustment.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustment.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustmentLine.cs b/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustmentLine.cs index 94a9967d..50267533 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustmentLine.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustmentLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustmentSummary.cs b/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustmentSummary.cs index bb5d0b86..50ca77a1 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustmentSummary.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/AbstractArAdjustmentSummary.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/AbstractArPayment.cs b/Intacct.SDK/Functions/AccountsReceivable/AbstractArPayment.cs index 2264fc2f..3770a5ba 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/AbstractArPayment.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/AbstractArPayment.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/AbstractArPaymentSummary.cs b/Intacct.SDK/Functions/AccountsReceivable/AbstractArPaymentSummary.cs index f40137f3..e438909d 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/AbstractArPaymentSummary.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/AbstractArPaymentSummary.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/AbstractCustomer.cs b/Intacct.SDK/Functions/AccountsReceivable/AbstractCustomer.cs index df01ee64..d143c3cf 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/AbstractCustomer.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/AbstractCustomer.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoice.cs b/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoice.cs index c1d5b8b3..a0920700 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoice.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoice.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoiceLine.cs b/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoiceLine.cs index 49faedaa..de406205 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoiceLine.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoiceLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoiceSummary.cs b/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoiceSummary.cs index e54bc338..cb1c9cf4 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoiceSummary.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/AbstractInvoiceSummary.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentCreate.cs b/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentCreate.cs index c09c059b..7dd7f911 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentCreate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentDelete.cs b/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentDelete.cs index cf1077fc..ae0bfd67 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentDelete.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentLineCreate.cs b/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentLineCreate.cs index 9a78453e..f36fd133 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentLineCreate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentSummaryCreate.cs b/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentSummaryCreate.cs index 1d28804d..820b66cf 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentSummaryCreate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/ArAdjustmentSummaryCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/ArPaymentApply.cs b/Intacct.SDK/Functions/AccountsReceivable/ArPaymentApply.cs index ffa0af3e..e0a4d69c 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/ArPaymentApply.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/ArPaymentApply.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/ArPaymentCreate.cs b/Intacct.SDK/Functions/AccountsReceivable/ArPaymentCreate.cs index 1f153081..fe831777 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/ArPaymentCreate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/ArPaymentCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/ArPaymentItem.cs b/Intacct.SDK/Functions/AccountsReceivable/ArPaymentItem.cs index 53c47c62..2f0eb74d 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/ArPaymentItem.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/ArPaymentItem.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/ArPaymentReverse.cs b/Intacct.SDK/Functions/AccountsReceivable/ArPaymentReverse.cs index 18613831..2545cb97 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/ArPaymentReverse.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/ArPaymentReverse.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/ArPaymentSummaryCreate.cs b/Intacct.SDK/Functions/AccountsReceivable/ArPaymentSummaryCreate.cs index 1aaa650c..6ecf7164 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/ArPaymentSummaryCreate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/ArPaymentSummaryCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/CustomerCreate.cs b/Intacct.SDK/Functions/AccountsReceivable/CustomerCreate.cs index be4789e8..96d88888 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/CustomerCreate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/CustomerCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/CustomerDelete.cs b/Intacct.SDK/Functions/AccountsReceivable/CustomerDelete.cs index 43ae57c0..7fa959fb 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/CustomerDelete.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/CustomerDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/CustomerUpdate.cs b/Intacct.SDK/Functions/AccountsReceivable/CustomerUpdate.cs index a35803cf..fced3abb 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/CustomerUpdate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/CustomerUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/InvoiceCreate.cs b/Intacct.SDK/Functions/AccountsReceivable/InvoiceCreate.cs index 5791560f..22a82cb1 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/InvoiceCreate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/InvoiceCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/InvoiceDelete.cs b/Intacct.SDK/Functions/AccountsReceivable/InvoiceDelete.cs index d869d883..da39eec1 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/InvoiceDelete.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/InvoiceDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/InvoiceLineCreate.cs b/Intacct.SDK/Functions/AccountsReceivable/InvoiceLineCreate.cs index 669dc42d..39a5e7e7 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/InvoiceLineCreate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/InvoiceLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/InvoiceLineUpdate.cs b/Intacct.SDK/Functions/AccountsReceivable/InvoiceLineUpdate.cs index 3fe8f838..2f0d62ed 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/InvoiceLineUpdate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/InvoiceLineUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/InvoiceReverse.cs b/Intacct.SDK/Functions/AccountsReceivable/InvoiceReverse.cs index 92dca4f7..b4c9603d 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/InvoiceReverse.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/InvoiceReverse.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/InvoiceSummaryCreate.cs b/Intacct.SDK/Functions/AccountsReceivable/InvoiceSummaryCreate.cs index 75524aa1..bcf557d7 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/InvoiceSummaryCreate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/InvoiceSummaryCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/AccountsReceivable/InvoiceUpdate.cs b/Intacct.SDK/Functions/AccountsReceivable/InvoiceUpdate.cs index 10647dee..53a3ab81 100644 --- a/Intacct.SDK/Functions/AccountsReceivable/InvoiceUpdate.cs +++ b/Intacct.SDK/Functions/AccountsReceivable/InvoiceUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/ApiSessionCreate.cs b/Intacct.SDK/Functions/ApiSessionCreate.cs index 0a7e26dd..fcce9f81 100644 --- a/Intacct.SDK/Functions/ApiSessionCreate.cs +++ b/Intacct.SDK/Functions/ApiSessionCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -20,6 +20,8 @@ namespace Intacct.SDK.Functions public class ApiSessionCreate : AbstractFunction { + public string EntityId; + public ApiSessionCreate(string controlId = "") : base(controlId) { } @@ -29,7 +31,14 @@ public override void WriteXml(ref IaXmlWriter xml) xml.WriteStartElement("function"); xml.WriteAttributeString("controlid", ControlId); - xml.WriteElementString("getAPISession", ""); + xml.WriteStartElement("getAPISession"); + + if (EntityId != null) + { + xml.WriteElementString("locationid", EntityId); + } + + xml.WriteEndElement(); //getAPISession xml.WriteEndElement(); //function } diff --git a/Intacct.SDK/Functions/CashManagement/AbstractChargeCardTransaction.cs b/Intacct.SDK/Functions/CashManagement/AbstractChargeCardTransaction.cs index 2a1b548a..aee1052b 100644 --- a/Intacct.SDK/Functions/CashManagement/AbstractChargeCardTransaction.cs +++ b/Intacct.SDK/Functions/CashManagement/AbstractChargeCardTransaction.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/AbstractChargeCardTransactionLine.cs b/Intacct.SDK/Functions/CashManagement/AbstractChargeCardTransactionLine.cs index b6721e22..7fedc7f3 100644 --- a/Intacct.SDK/Functions/CashManagement/AbstractChargeCardTransactionLine.cs +++ b/Intacct.SDK/Functions/CashManagement/AbstractChargeCardTransactionLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/AbstractDeposit.cs b/Intacct.SDK/Functions/CashManagement/AbstractDeposit.cs index 2cd1b4d7..34eefab5 100644 --- a/Intacct.SDK/Functions/CashManagement/AbstractDeposit.cs +++ b/Intacct.SDK/Functions/CashManagement/AbstractDeposit.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/AbstractOtherReceipt.cs b/Intacct.SDK/Functions/CashManagement/AbstractOtherReceipt.cs index 73609de2..f0b238bc 100644 --- a/Intacct.SDK/Functions/CashManagement/AbstractOtherReceipt.cs +++ b/Intacct.SDK/Functions/CashManagement/AbstractOtherReceipt.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/AbstractOtherReceiptLine.cs b/Intacct.SDK/Functions/CashManagement/AbstractOtherReceiptLine.cs index f2f2e353..ab3af02f 100644 --- a/Intacct.SDK/Functions/CashManagement/AbstractOtherReceiptLine.cs +++ b/Intacct.SDK/Functions/CashManagement/AbstractOtherReceiptLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionCreate.cs b/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionCreate.cs index 22138356..31443a33 100644 --- a/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionCreate.cs +++ b/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionLineCreate.cs b/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionLineCreate.cs index d9e2d32c..a77fea24 100644 --- a/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionLineCreate.cs +++ b/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionLineUpdate.cs b/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionLineUpdate.cs index e3bcfbd6..b7b206a9 100644 --- a/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionLineUpdate.cs +++ b/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionLineUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionReverse.cs b/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionReverse.cs index d52e7e2b..d72f5e35 100644 --- a/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionReverse.cs +++ b/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionReverse.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionUpdate.cs b/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionUpdate.cs index 98b72937..90ff2fe5 100644 --- a/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionUpdate.cs +++ b/Intacct.SDK/Functions/CashManagement/ChargeCardTransactionUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/DepositCreate.cs b/Intacct.SDK/Functions/CashManagement/DepositCreate.cs index e72b8add..2856d33f 100644 --- a/Intacct.SDK/Functions/CashManagement/DepositCreate.cs +++ b/Intacct.SDK/Functions/CashManagement/DepositCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/OtherReceiptCreate.cs b/Intacct.SDK/Functions/CashManagement/OtherReceiptCreate.cs index 4a2ecc35..3e94e601 100644 --- a/Intacct.SDK/Functions/CashManagement/OtherReceiptCreate.cs +++ b/Intacct.SDK/Functions/CashManagement/OtherReceiptCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/CashManagement/OtherReceiptLineCreate.cs b/Intacct.SDK/Functions/CashManagement/OtherReceiptLineCreate.cs index a031ba7a..714a6d0c 100644 --- a/Intacct.SDK/Functions/CashManagement/OtherReceiptLineCreate.cs +++ b/Intacct.SDK/Functions/CashManagement/OtherReceiptLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/AbstractCondition.cs b/Intacct.SDK/Functions/Common/Query/AbstractCondition.cs index 45bf3d4c..eb5d3adb 100644 --- a/Intacct.SDK/Functions/Common/Query/AbstractCondition.cs +++ b/Intacct.SDK/Functions/Common/Query/AbstractCondition.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractComparison.cs b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractComparison.cs index 67a8b046..ce743c5c 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractComparison.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractComparison.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDate.cs b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDate.cs index c8ff444d..0fc18dd7 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDate.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDateTime.cs b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDateTime.cs index b1777730..00912950 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDateTime.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDateTime.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDateTimeClass.cs b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDateTimeClass.cs index 90bb29bd..ba6c6e23 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDateTimeClass.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDateTimeClass.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDecimal.cs b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDecimal.cs index 01976972..39ca687a 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDecimal.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractDecimal.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractInteger.cs b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractInteger.cs index 96006832..2a0f5955 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractInteger.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractInteger.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractListInteger.cs b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractListInteger.cs index 4a92aa71..0eef0516 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractListInteger.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractListInteger.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractListString.cs b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractListString.cs index 50e4c9bf..38102610 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractListString.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractListString.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractNull.cs b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractNull.cs index 690a0839..b5859ccc 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractNull.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractNull.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractString.cs b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractString.cs index 8051a904..74fe5a11 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/AbstractString.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/AbstractString.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDate.cs b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDate.cs index 2e35fcdd..b28679b0 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDate.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDateTime.cs b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDateTime.cs index eb6805c5..696a1b62 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDateTime.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDateTime.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDecimal.cs b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDecimal.cs index 77b9c779..f9038fb6 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDecimal.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToDecimal.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToInteger.cs b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToInteger.cs index 8092fb01..4c0b3734 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToInteger.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToInteger.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToNull.cs b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToNull.cs index 99cdb6a0..eefca2aa 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToNull.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToNull.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToString.cs b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToString.cs index b023ef9b..7aca2179 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToString.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/EqualTo/EqualToString.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDate.cs b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDate.cs index 5b8b0edc..881827b6 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDate.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTime.cs b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTime.cs index e4a3fe32..5c9a8736 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTime.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDateTime.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDecimal.cs b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDecimal.cs index 38eef59f..eb2e6ac9 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDecimal.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanDecimal.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanInteger.cs b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanInteger.cs index d93c8ea1..e46bc7ba 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanInteger.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanInteger.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanString.cs b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanString.cs index 8d92655d..0300eb32 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanString.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThan/GreaterThanString.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDate.cs b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDate.cs index d74d9930..a26596e6 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDate.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTime.cs b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTime.cs index 63a88e16..b6e91d54 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTime.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDateTime.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDecimal.cs b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDecimal.cs index f8e6a670..24f84c84 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDecimal.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToDecimal.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToInteger.cs b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToInteger.cs index 3763fd1a..431822d7 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToInteger.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToInteger.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToString.cs b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToString.cs index 225be107..71c6b5e8 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToString.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/GreaterThanOrEqualTo/GreaterThanOrEqualToString.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/IComparison.cs b/Intacct.SDK/Functions/Common/Query/Comparison/IComparison.cs index 8480fcff..01bd0905 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/IComparison.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/IComparison.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/InList/InListInteger.cs b/Intacct.SDK/Functions/Common/Query/Comparison/InList/InListInteger.cs index 2d1951d7..a1d4102b 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/InList/InListInteger.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/InList/InListInteger.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/InList/InListString.cs b/Intacct.SDK/Functions/Common/Query/Comparison/InList/InListString.cs index c36891e2..58ace9c1 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/InList/InListString.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/InList/InListString.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDate.cs b/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDate.cs index 8693af12..d0262037 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDate.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDateTime.cs b/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDateTime.cs index 81da2717..cb8585d4 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDateTime.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDateTime.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDecimal.cs b/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDecimal.cs index 0abe0885..21c71d91 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDecimal.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanDecimal.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanInteger.cs b/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanInteger.cs index 88dbc053..9f0f7b77 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanInteger.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanInteger.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanString.cs b/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanString.cs index f72c56b4..3ec74658 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanString.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/LessThan/LessThanString.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDate.cs b/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDate.cs index 634033ea..f03ff95a 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDate.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTime.cs b/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTime.cs index 41280e00..d78a6ff8 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTime.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDateTime.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDecimal.cs b/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDecimal.cs index a62a6d2a..fab63bad 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDecimal.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToDecimal.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToInteger.cs b/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToInteger.cs index e7eb9edc..855af9ca 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToInteger.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToInteger.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToString.cs b/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToString.cs index 892081c7..e0cdb5b7 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToString.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/LessThanOrEqualTo/LessThanOrEqualToString.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Comparison/Like/LikeString.cs b/Intacct.SDK/Functions/Common/Query/Comparison/Like/LikeString.cs index 188624be..ce87540f 100644 --- a/Intacct.SDK/Functions/Common/Query/Comparison/Like/LikeString.cs +++ b/Intacct.SDK/Functions/Common/Query/Comparison/Like/LikeString.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/ICondition.cs b/Intacct.SDK/Functions/Common/Query/ICondition.cs index 8dde54fc..338f9a8d 100644 --- a/Intacct.SDK/Functions/Common/Query/ICondition.cs +++ b/Intacct.SDK/Functions/Common/Query/ICondition.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/IQuery.cs b/Intacct.SDK/Functions/Common/Query/IQuery.cs index b9e1993a..7afef9f5 100644 --- a/Intacct.SDK/Functions/Common/Query/IQuery.cs +++ b/Intacct.SDK/Functions/Common/Query/IQuery.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Logical/AbstractLogical.cs b/Intacct.SDK/Functions/Common/Query/Logical/AbstractLogical.cs index c074b40c..131ce439 100644 --- a/Intacct.SDK/Functions/Common/Query/Logical/AbstractLogical.cs +++ b/Intacct.SDK/Functions/Common/Query/Logical/AbstractLogical.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Logical/AndCondition.cs b/Intacct.SDK/Functions/Common/Query/Logical/AndCondition.cs index 07f39f99..cf5ee0ce 100644 --- a/Intacct.SDK/Functions/Common/Query/Logical/AndCondition.cs +++ b/Intacct.SDK/Functions/Common/Query/Logical/AndCondition.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Logical/ILogical.cs b/Intacct.SDK/Functions/Common/Query/Logical/ILogical.cs index a2814806..d9c713a3 100644 --- a/Intacct.SDK/Functions/Common/Query/Logical/ILogical.cs +++ b/Intacct.SDK/Functions/Common/Query/Logical/ILogical.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/Logical/OrCondition.cs b/Intacct.SDK/Functions/Common/Query/Logical/OrCondition.cs index e933742a..bb319310 100644 --- a/Intacct.SDK/Functions/Common/Query/Logical/OrCondition.cs +++ b/Intacct.SDK/Functions/Common/Query/Logical/OrCondition.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Query/QueryString.cs b/Intacct.SDK/Functions/Common/Query/QueryString.cs index a79a97ed..b155c924 100644 --- a/Intacct.SDK/Functions/Common/Query/QueryString.cs +++ b/Intacct.SDK/Functions/Common/Query/QueryString.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/Read.cs b/Intacct.SDK/Functions/Common/Read.cs index b516ae2b..f25961c6 100644 --- a/Intacct.SDK/Functions/Common/Read.cs +++ b/Intacct.SDK/Functions/Common/Read.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/ReadByName.cs b/Intacct.SDK/Functions/Common/ReadByName.cs index 67479eaa..32a1df12 100644 --- a/Intacct.SDK/Functions/Common/ReadByName.cs +++ b/Intacct.SDK/Functions/Common/ReadByName.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/ReadByQuery.cs b/Intacct.SDK/Functions/Common/ReadByQuery.cs index 593cb32c..5fe876c1 100644 --- a/Intacct.SDK/Functions/Common/ReadByQuery.cs +++ b/Intacct.SDK/Functions/Common/ReadByQuery.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Common/ReadMore.cs b/Intacct.SDK/Functions/Common/ReadMore.cs index 738787ef..463de933 100644 --- a/Intacct.SDK/Functions/Common/ReadMore.cs +++ b/Intacct.SDK/Functions/Common/ReadMore.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AbstractAllocation.cs b/Intacct.SDK/Functions/Company/AbstractAllocation.cs index 3f072a4b..90d75b69 100644 --- a/Intacct.SDK/Functions/Company/AbstractAllocation.cs +++ b/Intacct.SDK/Functions/Company/AbstractAllocation.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AbstractAllocationLine.cs b/Intacct.SDK/Functions/Company/AbstractAllocationLine.cs index a34b79e9..123cef48 100644 --- a/Intacct.SDK/Functions/Company/AbstractAllocationLine.cs +++ b/Intacct.SDK/Functions/Company/AbstractAllocationLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AbstractAttachments.cs b/Intacct.SDK/Functions/Company/AbstractAttachments.cs index 92378826..2931cc9f 100644 --- a/Intacct.SDK/Functions/Company/AbstractAttachments.cs +++ b/Intacct.SDK/Functions/Company/AbstractAttachments.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AbstractAttachmentsFolder.cs b/Intacct.SDK/Functions/Company/AbstractAttachmentsFolder.cs index ed6ce1af..403464cc 100644 --- a/Intacct.SDK/Functions/Company/AbstractAttachmentsFolder.cs +++ b/Intacct.SDK/Functions/Company/AbstractAttachmentsFolder.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AbstractClass.cs b/Intacct.SDK/Functions/Company/AbstractClass.cs index 6d3dab69..6bd0f5a1 100644 --- a/Intacct.SDK/Functions/Company/AbstractClass.cs +++ b/Intacct.SDK/Functions/Company/AbstractClass.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AbstractContact.cs b/Intacct.SDK/Functions/Company/AbstractContact.cs index 7804f389..836c04ce 100644 --- a/Intacct.SDK/Functions/Company/AbstractContact.cs +++ b/Intacct.SDK/Functions/Company/AbstractContact.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AbstractDepartment.cs b/Intacct.SDK/Functions/Company/AbstractDepartment.cs index 2f124547..5fff2edc 100644 --- a/Intacct.SDK/Functions/Company/AbstractDepartment.cs +++ b/Intacct.SDK/Functions/Company/AbstractDepartment.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AbstractLocation.cs b/Intacct.SDK/Functions/Company/AbstractLocation.cs index 86354eee..c8bb00ca 100644 --- a/Intacct.SDK/Functions/Company/AbstractLocation.cs +++ b/Intacct.SDK/Functions/Company/AbstractLocation.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AbstractUser.cs b/Intacct.SDK/Functions/Company/AbstractUser.cs index 1d8717ca..c5c730a1 100644 --- a/Intacct.SDK/Functions/Company/AbstractUser.cs +++ b/Intacct.SDK/Functions/Company/AbstractUser.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AllocationCreate.cs b/Intacct.SDK/Functions/Company/AllocationCreate.cs index 856ecb79..7412e3e8 100644 --- a/Intacct.SDK/Functions/Company/AllocationCreate.cs +++ b/Intacct.SDK/Functions/Company/AllocationCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AllocationDelete.cs b/Intacct.SDK/Functions/Company/AllocationDelete.cs index 8d11a61b..298eb26e 100644 --- a/Intacct.SDK/Functions/Company/AllocationDelete.cs +++ b/Intacct.SDK/Functions/Company/AllocationDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AllocationLine.cs b/Intacct.SDK/Functions/Company/AllocationLine.cs index 74004804..c13d538d 100644 --- a/Intacct.SDK/Functions/Company/AllocationLine.cs +++ b/Intacct.SDK/Functions/Company/AllocationLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AllocationUpdate.cs b/Intacct.SDK/Functions/Company/AllocationUpdate.cs index ffe9b6e4..582dc00f 100644 --- a/Intacct.SDK/Functions/Company/AllocationUpdate.cs +++ b/Intacct.SDK/Functions/Company/AllocationUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AttachmentFile.cs b/Intacct.SDK/Functions/Company/AttachmentFile.cs index 09a87772..a445121f 100644 --- a/Intacct.SDK/Functions/Company/AttachmentFile.cs +++ b/Intacct.SDK/Functions/Company/AttachmentFile.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AttachmentsCreate.cs b/Intacct.SDK/Functions/Company/AttachmentsCreate.cs index 56e02e5c..8b32bfd5 100644 --- a/Intacct.SDK/Functions/Company/AttachmentsCreate.cs +++ b/Intacct.SDK/Functions/Company/AttachmentsCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AttachmentsDelete.cs b/Intacct.SDK/Functions/Company/AttachmentsDelete.cs index 857a54e1..76ec66d2 100644 --- a/Intacct.SDK/Functions/Company/AttachmentsDelete.cs +++ b/Intacct.SDK/Functions/Company/AttachmentsDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AttachmentsFolderCreate.cs b/Intacct.SDK/Functions/Company/AttachmentsFolderCreate.cs index 272b7284..33e1e63a 100644 --- a/Intacct.SDK/Functions/Company/AttachmentsFolderCreate.cs +++ b/Intacct.SDK/Functions/Company/AttachmentsFolderCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AttachmentsFolderDelete.cs b/Intacct.SDK/Functions/Company/AttachmentsFolderDelete.cs index f405dcb6..41fb5450 100644 --- a/Intacct.SDK/Functions/Company/AttachmentsFolderDelete.cs +++ b/Intacct.SDK/Functions/Company/AttachmentsFolderDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AttachmentsFolderUpdate.cs b/Intacct.SDK/Functions/Company/AttachmentsFolderUpdate.cs index f26e6fec..95bfb647 100644 --- a/Intacct.SDK/Functions/Company/AttachmentsFolderUpdate.cs +++ b/Intacct.SDK/Functions/Company/AttachmentsFolderUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/AttachmentsUpdate.cs b/Intacct.SDK/Functions/Company/AttachmentsUpdate.cs index f7fcb7e7..591b7c5c 100644 --- a/Intacct.SDK/Functions/Company/AttachmentsUpdate.cs +++ b/Intacct.SDK/Functions/Company/AttachmentsUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/ClassCreate.cs b/Intacct.SDK/Functions/Company/ClassCreate.cs index 8de1e99f..fb77f81c 100644 --- a/Intacct.SDK/Functions/Company/ClassCreate.cs +++ b/Intacct.SDK/Functions/Company/ClassCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/ClassDelete.cs b/Intacct.SDK/Functions/Company/ClassDelete.cs index 98108a29..a31d90b3 100644 --- a/Intacct.SDK/Functions/Company/ClassDelete.cs +++ b/Intacct.SDK/Functions/Company/ClassDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/ClassUpdate.cs b/Intacct.SDK/Functions/Company/ClassUpdate.cs index 11128aa4..50445ce7 100644 --- a/Intacct.SDK/Functions/Company/ClassUpdate.cs +++ b/Intacct.SDK/Functions/Company/ClassUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/ContactCreate.cs b/Intacct.SDK/Functions/Company/ContactCreate.cs index a896dd18..de5904c2 100644 --- a/Intacct.SDK/Functions/Company/ContactCreate.cs +++ b/Intacct.SDK/Functions/Company/ContactCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/ContactDelete.cs b/Intacct.SDK/Functions/Company/ContactDelete.cs index 1e875a4b..7f87f4ac 100644 --- a/Intacct.SDK/Functions/Company/ContactDelete.cs +++ b/Intacct.SDK/Functions/Company/ContactDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/ContactUpdate.cs b/Intacct.SDK/Functions/Company/ContactUpdate.cs index 04a87fa0..64ac9028 100644 --- a/Intacct.SDK/Functions/Company/ContactUpdate.cs +++ b/Intacct.SDK/Functions/Company/ContactUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/CustomAllocationSplit.cs b/Intacct.SDK/Functions/Company/CustomAllocationSplit.cs index 71886370..b63195a1 100644 --- a/Intacct.SDK/Functions/Company/CustomAllocationSplit.cs +++ b/Intacct.SDK/Functions/Company/CustomAllocationSplit.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/DepartmentCreate.cs b/Intacct.SDK/Functions/Company/DepartmentCreate.cs index 61815e81..b73e001a 100644 --- a/Intacct.SDK/Functions/Company/DepartmentCreate.cs +++ b/Intacct.SDK/Functions/Company/DepartmentCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/DepartmentDelete.cs b/Intacct.SDK/Functions/Company/DepartmentDelete.cs index 04ff29f1..13bc7947 100644 --- a/Intacct.SDK/Functions/Company/DepartmentDelete.cs +++ b/Intacct.SDK/Functions/Company/DepartmentDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/DepartmentUpdate.cs b/Intacct.SDK/Functions/Company/DepartmentUpdate.cs index 66db5fb0..e10a2271 100644 --- a/Intacct.SDK/Functions/Company/DepartmentUpdate.cs +++ b/Intacct.SDK/Functions/Company/DepartmentUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/IAttachment.cs b/Intacct.SDK/Functions/Company/IAttachment.cs index 1e4fb03a..b8a789c4 100644 --- a/Intacct.SDK/Functions/Company/IAttachment.cs +++ b/Intacct.SDK/Functions/Company/IAttachment.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/LocationCreate.cs b/Intacct.SDK/Functions/Company/LocationCreate.cs index b99aa3e9..e2294513 100644 --- a/Intacct.SDK/Functions/Company/LocationCreate.cs +++ b/Intacct.SDK/Functions/Company/LocationCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/LocationDelete.cs b/Intacct.SDK/Functions/Company/LocationDelete.cs index a4cf0f1a..b72f80fc 100644 --- a/Intacct.SDK/Functions/Company/LocationDelete.cs +++ b/Intacct.SDK/Functions/Company/LocationDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/LocationUpdate.cs b/Intacct.SDK/Functions/Company/LocationUpdate.cs index 33672b23..564ead9c 100644 --- a/Intacct.SDK/Functions/Company/LocationUpdate.cs +++ b/Intacct.SDK/Functions/Company/LocationUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/SubscriptionList.cs b/Intacct.SDK/Functions/Company/SubscriptionList.cs index bbd56dee..9d10f076 100644 --- a/Intacct.SDK/Functions/Company/SubscriptionList.cs +++ b/Intacct.SDK/Functions/Company/SubscriptionList.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/UserCreate.cs b/Intacct.SDK/Functions/Company/UserCreate.cs index aab14465..fa260c59 100644 --- a/Intacct.SDK/Functions/Company/UserCreate.cs +++ b/Intacct.SDK/Functions/Company/UserCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/UserEffectivePermissionList.cs b/Intacct.SDK/Functions/Company/UserEffectivePermissionList.cs index 16874e5b..6bc91604 100644 --- a/Intacct.SDK/Functions/Company/UserEffectivePermissionList.cs +++ b/Intacct.SDK/Functions/Company/UserEffectivePermissionList.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Company/UserUpdate.cs b/Intacct.SDK/Functions/Company/UserUpdate.cs index 1e0b7c95..6c39b3da 100644 --- a/Intacct.SDK/Functions/Company/UserUpdate.cs +++ b/Intacct.SDK/Functions/Company/UserUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/ContractsRevMgmt/AbstractContract.cs b/Intacct.SDK/Functions/ContractsRevMgmt/AbstractContract.cs index 4c9db7c0..37ff4334 100644 --- a/Intacct.SDK/Functions/ContractsRevMgmt/AbstractContract.cs +++ b/Intacct.SDK/Functions/ContractsRevMgmt/AbstractContract.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/ContractsRevMgmt/AbstractContractLine.cs b/Intacct.SDK/Functions/ContractsRevMgmt/AbstractContractLine.cs index a4e6cefc..29215b4f 100644 --- a/Intacct.SDK/Functions/ContractsRevMgmt/AbstractContractLine.cs +++ b/Intacct.SDK/Functions/ContractsRevMgmt/AbstractContractLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/ContractsRevMgmt/ContractCreate.cs b/Intacct.SDK/Functions/ContractsRevMgmt/ContractCreate.cs index 3aa28ba7..1481fe22 100644 --- a/Intacct.SDK/Functions/ContractsRevMgmt/ContractCreate.cs +++ b/Intacct.SDK/Functions/ContractsRevMgmt/ContractCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/ContractsRevMgmt/ContractDelete.cs b/Intacct.SDK/Functions/ContractsRevMgmt/ContractDelete.cs index 08c8a5de..8beaf818 100644 --- a/Intacct.SDK/Functions/ContractsRevMgmt/ContractDelete.cs +++ b/Intacct.SDK/Functions/ContractsRevMgmt/ContractDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineCreate.cs b/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineCreate.cs index 2afc3de4..bef5adb2 100644 --- a/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineCreate.cs +++ b/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineDelete.cs b/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineDelete.cs index f56d8c93..83a64167 100644 --- a/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineDelete.cs +++ b/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineHold.cs b/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineHold.cs index 528b4bc5..f6ed63c2 100644 --- a/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineHold.cs +++ b/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineHold.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineResume.cs b/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineResume.cs index 39eec104..5c960594 100644 --- a/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineResume.cs +++ b/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineResume.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineUpdate.cs b/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineUpdate.cs index 79949f34..f05ae2e7 100644 --- a/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineUpdate.cs +++ b/Intacct.SDK/Functions/ContractsRevMgmt/ContractLineUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/ContractsRevMgmt/ContractUpdate.cs b/Intacct.SDK/Functions/ContractsRevMgmt/ContractUpdate.cs index 7b051388..98696824 100644 --- a/Intacct.SDK/Functions/ContractsRevMgmt/ContractUpdate.cs +++ b/Intacct.SDK/Functions/ContractsRevMgmt/ContractUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/DataDeliveryService/DdsJobCreate.cs b/Intacct.SDK/Functions/DataDeliveryService/DdsJobCreate.cs index 9dac2585..13f9fe5c 100644 --- a/Intacct.SDK/Functions/DataDeliveryService/DdsJobCreate.cs +++ b/Intacct.SDK/Functions/DataDeliveryService/DdsJobCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/DataDeliveryService/DdsObjectDdlGet.cs b/Intacct.SDK/Functions/DataDeliveryService/DdsObjectDdlGet.cs index 5bca0dcf..91ffb048 100644 --- a/Intacct.SDK/Functions/DataDeliveryService/DdsObjectDdlGet.cs +++ b/Intacct.SDK/Functions/DataDeliveryService/DdsObjectDdlGet.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/DataDeliveryService/DdsObjectList.cs b/Intacct.SDK/Functions/DataDeliveryService/DdsObjectList.cs index c3aa5df8..53ff111b 100644 --- a/Intacct.SDK/Functions/DataDeliveryService/DdsObjectList.cs +++ b/Intacct.SDK/Functions/DataDeliveryService/DdsObjectList.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/AbstractEmployee.cs b/Intacct.SDK/Functions/EmployeeExpenses/AbstractEmployee.cs index 682b6cfb..ccf6df68 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/AbstractEmployee.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/AbstractEmployee.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseAdjustment.cs b/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseAdjustment.cs index a7c99ee9..5bbba0ea 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseAdjustment.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseAdjustment.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReport.cs b/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReport.cs index 006a59db..11f6d7b0 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReport.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReport.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReportLine.cs b/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReportLine.cs index 61511b4b..c999e191 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReportLine.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReportLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReportSummary.cs b/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReportSummary.cs index 8330a28c..59918457 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReportSummary.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/AbstractExpenseReportSummary.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/AbstractReimbursementRequest.cs b/Intacct.SDK/Functions/EmployeeExpenses/AbstractReimbursementRequest.cs index a997011c..457adff7 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/AbstractReimbursementRequest.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/AbstractReimbursementRequest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/EmployeeCreate.cs b/Intacct.SDK/Functions/EmployeeExpenses/EmployeeCreate.cs index c3b913ab..52d0be60 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/EmployeeCreate.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/EmployeeCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/EmployeeDelete.cs b/Intacct.SDK/Functions/EmployeeExpenses/EmployeeDelete.cs index 01e3d003..488acd68 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/EmployeeDelete.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/EmployeeDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/EmployeeUpdate.cs b/Intacct.SDK/Functions/EmployeeExpenses/EmployeeUpdate.cs index 0e5b5e60..b90584a9 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/EmployeeUpdate.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/EmployeeUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentCreate.cs b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentCreate.cs index de334cab..6e99cf52 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentCreate.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentDelete.cs b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentDelete.cs index 0f9bb950..d5b1b46e 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentDelete.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentLineCreate.cs b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentLineCreate.cs index 03672a87..bb528ed5 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentLineCreate.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseAdjustmentLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportCreate.cs b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportCreate.cs index c9b469aa..90e8171a 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportCreate.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportDelete.cs b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportDelete.cs index 1f03eba9..5647eaab 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportDelete.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportLineCreate.cs b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportLineCreate.cs index 876016ec..c5feaf22 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportLineCreate.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportReverse.cs b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportReverse.cs index 7363a83f..929a2440 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportReverse.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportReverse.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportSummaryCreate.cs b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportSummaryCreate.cs index 9507e415..93578b6b 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportSummaryCreate.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/ExpenseReportSummaryCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/ReimbursementRequestCreate.cs b/Intacct.SDK/Functions/EmployeeExpenses/ReimbursementRequestCreate.cs index 5c5ef6cf..cf2ccb1b 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/ReimbursementRequestCreate.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/ReimbursementRequestCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/EmployeeExpenses/ReimbursementRequestItem.cs b/Intacct.SDK/Functions/EmployeeExpenses/ReimbursementRequestItem.cs index 578c3cb1..5a3afaea 100644 --- a/Intacct.SDK/Functions/EmployeeExpenses/ReimbursementRequestItem.cs +++ b/Intacct.SDK/Functions/EmployeeExpenses/ReimbursementRequestItem.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AbstractAccount.cs b/Intacct.SDK/Functions/GeneralLedger/AbstractAccount.cs index 2cf90a2c..89766ce1 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AbstractAccount.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AbstractAccount.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AbstractGlAccount.cs b/Intacct.SDK/Functions/GeneralLedger/AbstractGlAccount.cs index 75f4aa75..0feb406f 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AbstractGlAccount.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AbstractGlAccount.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AbstractGlBatch.cs b/Intacct.SDK/Functions/GeneralLedger/AbstractGlBatch.cs index defbf279..87727ab2 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AbstractGlBatch.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AbstractGlBatch.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AbstractGlEntry.cs b/Intacct.SDK/Functions/GeneralLedger/AbstractGlEntry.cs index e93fa23a..677478c6 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AbstractGlEntry.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AbstractGlEntry.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AbstractJournalEntry.cs b/Intacct.SDK/Functions/GeneralLedger/AbstractJournalEntry.cs index 8ffcba7b..25623639 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AbstractJournalEntry.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AbstractJournalEntry.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AbstractJournalEntryLine.cs b/Intacct.SDK/Functions/GeneralLedger/AbstractJournalEntryLine.cs index 2bd3cac6..8a8fdda3 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AbstractJournalEntryLine.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AbstractJournalEntryLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalAccount.cs b/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalAccount.cs index 8b9579d8..d496e8b7 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalAccount.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalAccount.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalJournalEntry.cs b/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalJournalEntry.cs index 7e10ffe4..d3fcd214 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalJournalEntry.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalJournalEntry.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalJournalEntryLine.cs b/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalJournalEntryLine.cs index 25e6b93f..ca180852 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalJournalEntryLine.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AbstractStatisticalJournalEntryLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AccountCreate.cs b/Intacct.SDK/Functions/GeneralLedger/AccountCreate.cs index cd1f9309..627fe147 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AccountCreate.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AccountCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AccountDelete.cs b/Intacct.SDK/Functions/GeneralLedger/AccountDelete.cs index 87269dd6..a647889b 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AccountDelete.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AccountDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/AccountUpdate.cs b/Intacct.SDK/Functions/GeneralLedger/AccountUpdate.cs index 686be2db..fb9f3432 100644 --- a/Intacct.SDK/Functions/GeneralLedger/AccountUpdate.cs +++ b/Intacct.SDK/Functions/GeneralLedger/AccountUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/JournalEntryCreate.cs b/Intacct.SDK/Functions/GeneralLedger/JournalEntryCreate.cs index 2e4cc575..741a1399 100644 --- a/Intacct.SDK/Functions/GeneralLedger/JournalEntryCreate.cs +++ b/Intacct.SDK/Functions/GeneralLedger/JournalEntryCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/JournalEntryDelete.cs b/Intacct.SDK/Functions/GeneralLedger/JournalEntryDelete.cs index 3b599b7c..4c7ad1a7 100644 --- a/Intacct.SDK/Functions/GeneralLedger/JournalEntryDelete.cs +++ b/Intacct.SDK/Functions/GeneralLedger/JournalEntryDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/JournalEntryLineCreate.cs b/Intacct.SDK/Functions/GeneralLedger/JournalEntryLineCreate.cs index acf1e2f1..0225f4fa 100644 --- a/Intacct.SDK/Functions/GeneralLedger/JournalEntryLineCreate.cs +++ b/Intacct.SDK/Functions/GeneralLedger/JournalEntryLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountCreate.cs b/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountCreate.cs index 9fe72d01..85455e02 100644 --- a/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountCreate.cs +++ b/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountDelete.cs b/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountDelete.cs index a2a34df0..7d03d14f 100644 --- a/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountDelete.cs +++ b/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountUpdate.cs b/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountUpdate.cs index 66341bf5..cfde8994 100644 --- a/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountUpdate.cs +++ b/Intacct.SDK/Functions/GeneralLedger/StatisticalAccountUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryCreate.cs b/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryCreate.cs index 4bc8ff6a..d01a38d3 100644 --- a/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryCreate.cs +++ b/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryDelete.cs b/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryDelete.cs index ab1d1fbc..7a3b1faa 100644 --- a/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryDelete.cs +++ b/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryLineCreate.cs b/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryLineCreate.cs index 526d63d6..9d842de4 100644 --- a/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryLineCreate.cs +++ b/Intacct.SDK/Functions/GeneralLedger/StatisticalJournalEntryLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GlobalConsolidations/AbstractConsolidation.cs b/Intacct.SDK/Functions/GlobalConsolidations/AbstractConsolidation.cs index 93375235..f5c7fd20 100644 --- a/Intacct.SDK/Functions/GlobalConsolidations/AbstractConsolidation.cs +++ b/Intacct.SDK/Functions/GlobalConsolidations/AbstractConsolidation.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GlobalConsolidations/ConsolidationCreate.cs b/Intacct.SDK/Functions/GlobalConsolidations/ConsolidationCreate.cs index d33c8675..5b12ddf8 100644 --- a/Intacct.SDK/Functions/GlobalConsolidations/ConsolidationCreate.cs +++ b/Intacct.SDK/Functions/GlobalConsolidations/ConsolidationCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/GlobalConsolidations/ConsolidationEntity.cs b/Intacct.SDK/Functions/GlobalConsolidations/ConsolidationEntity.cs index bed1facd..ef28049c 100644 --- a/Intacct.SDK/Functions/GlobalConsolidations/ConsolidationEntity.cs +++ b/Intacct.SDK/Functions/GlobalConsolidations/ConsolidationEntity.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/IFunction.cs b/Intacct.SDK/Functions/IFunction.cs index 8d2c46bc..ce517a66 100644 --- a/Intacct.SDK/Functions/IFunction.cs +++ b/Intacct.SDK/Functions/IFunction.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/AbstractInventoryTransaction.cs b/Intacct.SDK/Functions/InventoryControl/AbstractInventoryTransaction.cs index 973e26d7..0a7287a0 100644 --- a/Intacct.SDK/Functions/InventoryControl/AbstractInventoryTransaction.cs +++ b/Intacct.SDK/Functions/InventoryControl/AbstractInventoryTransaction.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/AbstractInventoryTransactionLine.cs b/Intacct.SDK/Functions/InventoryControl/AbstractInventoryTransactionLine.cs index 0356788a..73e25090 100644 --- a/Intacct.SDK/Functions/InventoryControl/AbstractInventoryTransactionLine.cs +++ b/Intacct.SDK/Functions/InventoryControl/AbstractInventoryTransactionLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/AbstractItem.cs b/Intacct.SDK/Functions/InventoryControl/AbstractItem.cs index e86b0475..94f35e1c 100644 --- a/Intacct.SDK/Functions/InventoryControl/AbstractItem.cs +++ b/Intacct.SDK/Functions/InventoryControl/AbstractItem.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/AbstractTransactionItemDetail.cs b/Intacct.SDK/Functions/InventoryControl/AbstractTransactionItemDetail.cs index 5766302e..405b35fb 100644 --- a/Intacct.SDK/Functions/InventoryControl/AbstractTransactionItemDetail.cs +++ b/Intacct.SDK/Functions/InventoryControl/AbstractTransactionItemDetail.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/AbstractTransactionSubtotal.cs b/Intacct.SDK/Functions/InventoryControl/AbstractTransactionSubtotal.cs index 9e30c456..38ff5524 100644 --- a/Intacct.SDK/Functions/InventoryControl/AbstractTransactionSubtotal.cs +++ b/Intacct.SDK/Functions/InventoryControl/AbstractTransactionSubtotal.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/AbstractWarehouse.cs b/Intacct.SDK/Functions/InventoryControl/AbstractWarehouse.cs index 0f38d8e3..dac0336d 100644 --- a/Intacct.SDK/Functions/InventoryControl/AbstractWarehouse.cs +++ b/Intacct.SDK/Functions/InventoryControl/AbstractWarehouse.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/InventoryTransactionCreate.cs b/Intacct.SDK/Functions/InventoryControl/InventoryTransactionCreate.cs index 8191fb31..e45834f2 100644 --- a/Intacct.SDK/Functions/InventoryControl/InventoryTransactionCreate.cs +++ b/Intacct.SDK/Functions/InventoryControl/InventoryTransactionCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/InventoryTransactionDelete.cs b/Intacct.SDK/Functions/InventoryControl/InventoryTransactionDelete.cs index cb23ceb6..90df14e6 100644 --- a/Intacct.SDK/Functions/InventoryControl/InventoryTransactionDelete.cs +++ b/Intacct.SDK/Functions/InventoryControl/InventoryTransactionDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/InventoryTransactionLineCreate.cs b/Intacct.SDK/Functions/InventoryControl/InventoryTransactionLineCreate.cs index b31d3ff2..a483ef96 100644 --- a/Intacct.SDK/Functions/InventoryControl/InventoryTransactionLineCreate.cs +++ b/Intacct.SDK/Functions/InventoryControl/InventoryTransactionLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/ItemCreate.cs b/Intacct.SDK/Functions/InventoryControl/ItemCreate.cs index ce59b6fd..0641f5a2 100644 --- a/Intacct.SDK/Functions/InventoryControl/ItemCreate.cs +++ b/Intacct.SDK/Functions/InventoryControl/ItemCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/ItemDelete.cs b/Intacct.SDK/Functions/InventoryControl/ItemDelete.cs index b1bd3d24..22909a97 100644 --- a/Intacct.SDK/Functions/InventoryControl/ItemDelete.cs +++ b/Intacct.SDK/Functions/InventoryControl/ItemDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/ItemUpdate.cs b/Intacct.SDK/Functions/InventoryControl/ItemUpdate.cs index 7eef1360..e8612c4f 100644 --- a/Intacct.SDK/Functions/InventoryControl/ItemUpdate.cs +++ b/Intacct.SDK/Functions/InventoryControl/ItemUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/TransactionItemDetail.cs b/Intacct.SDK/Functions/InventoryControl/TransactionItemDetail.cs index 3146ddef..c4ec329d 100644 --- a/Intacct.SDK/Functions/InventoryControl/TransactionItemDetail.cs +++ b/Intacct.SDK/Functions/InventoryControl/TransactionItemDetail.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/TransactionSubtotalCreate.cs b/Intacct.SDK/Functions/InventoryControl/TransactionSubtotalCreate.cs index 4e6229bf..962402c7 100644 --- a/Intacct.SDK/Functions/InventoryControl/TransactionSubtotalCreate.cs +++ b/Intacct.SDK/Functions/InventoryControl/TransactionSubtotalCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/TransactionSubtotalUpdate.cs b/Intacct.SDK/Functions/InventoryControl/TransactionSubtotalUpdate.cs index 4aa9d8f0..7c93dadb 100644 --- a/Intacct.SDK/Functions/InventoryControl/TransactionSubtotalUpdate.cs +++ b/Intacct.SDK/Functions/InventoryControl/TransactionSubtotalUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/WarehouseCreate.cs b/Intacct.SDK/Functions/InventoryControl/WarehouseCreate.cs index a2a5db1b..1b26b451 100644 --- a/Intacct.SDK/Functions/InventoryControl/WarehouseCreate.cs +++ b/Intacct.SDK/Functions/InventoryControl/WarehouseCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/WarehouseDelete.cs b/Intacct.SDK/Functions/InventoryControl/WarehouseDelete.cs index e84595d2..09e6e06d 100644 --- a/Intacct.SDK/Functions/InventoryControl/WarehouseDelete.cs +++ b/Intacct.SDK/Functions/InventoryControl/WarehouseDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/InventoryControl/WarehouseUpdate.cs b/Intacct.SDK/Functions/InventoryControl/WarehouseUpdate.cs index 9d835865..61cbf75d 100644 --- a/Intacct.SDK/Functions/InventoryControl/WarehouseUpdate.cs +++ b/Intacct.SDK/Functions/InventoryControl/WarehouseUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/OrderEntry/AbstractOrderEntryTransaction.cs b/Intacct.SDK/Functions/OrderEntry/AbstractOrderEntryTransaction.cs index 88eea272..16e7a59b 100644 --- a/Intacct.SDK/Functions/OrderEntry/AbstractOrderEntryTransaction.cs +++ b/Intacct.SDK/Functions/OrderEntry/AbstractOrderEntryTransaction.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/OrderEntry/AbstractOrderEntryTransactionLine.cs b/Intacct.SDK/Functions/OrderEntry/AbstractOrderEntryTransactionLine.cs index eb6ac43d..5eddbf8b 100644 --- a/Intacct.SDK/Functions/OrderEntry/AbstractOrderEntryTransactionLine.cs +++ b/Intacct.SDK/Functions/OrderEntry/AbstractOrderEntryTransactionLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionCreate.cs b/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionCreate.cs index 39faef6b..bbcec9cc 100644 --- a/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionCreate.cs +++ b/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionDelete.cs b/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionDelete.cs index 772bd225..82df99a7 100644 --- a/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionDelete.cs +++ b/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionLineCreate.cs b/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionLineCreate.cs index 54be7d26..2c14df78 100644 --- a/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionLineCreate.cs +++ b/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionLineUpdate.cs b/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionLineUpdate.cs index ecc0205c..604f2fec 100644 --- a/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionLineUpdate.cs +++ b/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionLineUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionUpdate.cs b/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionUpdate.cs index e5866053..a8d5e233 100644 --- a/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionUpdate.cs +++ b/Intacct.SDK/Functions/OrderEntry/OrderEntryTransactionUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/AbstractObservedPercentCompleted.cs b/Intacct.SDK/Functions/Projects/AbstractObservedPercentCompleted.cs index c3133600..347cda6e 100644 --- a/Intacct.SDK/Functions/Projects/AbstractObservedPercentCompleted.cs +++ b/Intacct.SDK/Functions/Projects/AbstractObservedPercentCompleted.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/AbstractProject.cs b/Intacct.SDK/Functions/Projects/AbstractProject.cs index bc89bbc9..db222d54 100644 --- a/Intacct.SDK/Functions/Projects/AbstractProject.cs +++ b/Intacct.SDK/Functions/Projects/AbstractProject.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/AbstractTask.cs b/Intacct.SDK/Functions/Projects/AbstractTask.cs index 7decbbf5..432e4662 100644 --- a/Intacct.SDK/Functions/Projects/AbstractTask.cs +++ b/Intacct.SDK/Functions/Projects/AbstractTask.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/AbstractTimesheet.cs b/Intacct.SDK/Functions/Projects/AbstractTimesheet.cs index 4d3dfc08..2d216ebd 100644 --- a/Intacct.SDK/Functions/Projects/AbstractTimesheet.cs +++ b/Intacct.SDK/Functions/Projects/AbstractTimesheet.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/AbstractTimesheetEntry.cs b/Intacct.SDK/Functions/Projects/AbstractTimesheetEntry.cs index aa59a947..f9b66fa0 100644 --- a/Intacct.SDK/Functions/Projects/AbstractTimesheetEntry.cs +++ b/Intacct.SDK/Functions/Projects/AbstractTimesheetEntry.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/ProjectCreate.cs b/Intacct.SDK/Functions/Projects/ProjectCreate.cs index 5036e06c..3a61f87b 100644 --- a/Intacct.SDK/Functions/Projects/ProjectCreate.cs +++ b/Intacct.SDK/Functions/Projects/ProjectCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/ProjectDelete.cs b/Intacct.SDK/Functions/Projects/ProjectDelete.cs index 85ee85c9..d113bb65 100644 --- a/Intacct.SDK/Functions/Projects/ProjectDelete.cs +++ b/Intacct.SDK/Functions/Projects/ProjectDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedCreate.cs b/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedCreate.cs index 0316fe5c..644754a9 100644 --- a/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedCreate.cs +++ b/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedDelete.cs b/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedDelete.cs index e7282f33..7199d60f 100644 --- a/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedDelete.cs +++ b/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedUpdate.cs b/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedUpdate.cs index 10850a26..98750e43 100644 --- a/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedUpdate.cs +++ b/Intacct.SDK/Functions/Projects/ProjectObservedPercentCompletedUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/ProjectUpdate.cs b/Intacct.SDK/Functions/Projects/ProjectUpdate.cs index 841f2881..6e0e1395 100644 --- a/Intacct.SDK/Functions/Projects/ProjectUpdate.cs +++ b/Intacct.SDK/Functions/Projects/ProjectUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/TaskCreate.cs b/Intacct.SDK/Functions/Projects/TaskCreate.cs index ea0f074d..3031a72b 100644 --- a/Intacct.SDK/Functions/Projects/TaskCreate.cs +++ b/Intacct.SDK/Functions/Projects/TaskCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/TaskDelete.cs b/Intacct.SDK/Functions/Projects/TaskDelete.cs index 23e1ace6..b4192267 100644 --- a/Intacct.SDK/Functions/Projects/TaskDelete.cs +++ b/Intacct.SDK/Functions/Projects/TaskDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedCreate.cs b/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedCreate.cs index 77ab4a1f..50c24312 100644 --- a/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedCreate.cs +++ b/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedDelete.cs b/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedDelete.cs index 13bb3269..fb5410f3 100644 --- a/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedDelete.cs +++ b/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedUpdate.cs b/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedUpdate.cs index ea4b2827..7489ee11 100644 --- a/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedUpdate.cs +++ b/Intacct.SDK/Functions/Projects/TaskObservedPercentCompletedUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/TaskUpdate.cs b/Intacct.SDK/Functions/Projects/TaskUpdate.cs index 1c408a3e..fd9ee2b9 100644 --- a/Intacct.SDK/Functions/Projects/TaskUpdate.cs +++ b/Intacct.SDK/Functions/Projects/TaskUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/TimesheetCreate.cs b/Intacct.SDK/Functions/Projects/TimesheetCreate.cs index 2a1f2f80..3e734a15 100644 --- a/Intacct.SDK/Functions/Projects/TimesheetCreate.cs +++ b/Intacct.SDK/Functions/Projects/TimesheetCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/TimesheetDelete.cs b/Intacct.SDK/Functions/Projects/TimesheetDelete.cs index e6ce5ae3..5334267a 100644 --- a/Intacct.SDK/Functions/Projects/TimesheetDelete.cs +++ b/Intacct.SDK/Functions/Projects/TimesheetDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Projects/TimesheetEntryCreate.cs b/Intacct.SDK/Functions/Projects/TimesheetEntryCreate.cs index 44f9369d..213efc3e 100644 --- a/Intacct.SDK/Functions/Projects/TimesheetEntryCreate.cs +++ b/Intacct.SDK/Functions/Projects/TimesheetEntryCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Purchasing/AbstractPurchasingTransaction.cs b/Intacct.SDK/Functions/Purchasing/AbstractPurchasingTransaction.cs index 257beaab..4f3ab12a 100644 --- a/Intacct.SDK/Functions/Purchasing/AbstractPurchasingTransaction.cs +++ b/Intacct.SDK/Functions/Purchasing/AbstractPurchasingTransaction.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Purchasing/AbstractPurchasingTransactionLine.cs b/Intacct.SDK/Functions/Purchasing/AbstractPurchasingTransactionLine.cs index 12589cfa..820adf91 100644 --- a/Intacct.SDK/Functions/Purchasing/AbstractPurchasingTransactionLine.cs +++ b/Intacct.SDK/Functions/Purchasing/AbstractPurchasingTransactionLine.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Purchasing/PurchasingTransactionCreate.cs b/Intacct.SDK/Functions/Purchasing/PurchasingTransactionCreate.cs index 77b9d4b1..aabd151c 100644 --- a/Intacct.SDK/Functions/Purchasing/PurchasingTransactionCreate.cs +++ b/Intacct.SDK/Functions/Purchasing/PurchasingTransactionCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Purchasing/PurchasingTransactionDelete.cs b/Intacct.SDK/Functions/Purchasing/PurchasingTransactionDelete.cs index 0e201654..386689f8 100644 --- a/Intacct.SDK/Functions/Purchasing/PurchasingTransactionDelete.cs +++ b/Intacct.SDK/Functions/Purchasing/PurchasingTransactionDelete.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Purchasing/PurchasingTransactionLineCreate.cs b/Intacct.SDK/Functions/Purchasing/PurchasingTransactionLineCreate.cs index c450cb0b..4ed7defd 100644 --- a/Intacct.SDK/Functions/Purchasing/PurchasingTransactionLineCreate.cs +++ b/Intacct.SDK/Functions/Purchasing/PurchasingTransactionLineCreate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Purchasing/PurchasingTransactionLineUpdate.cs b/Intacct.SDK/Functions/Purchasing/PurchasingTransactionLineUpdate.cs index 3331e315..b4f18c95 100644 --- a/Intacct.SDK/Functions/Purchasing/PurchasingTransactionLineUpdate.cs +++ b/Intacct.SDK/Functions/Purchasing/PurchasingTransactionLineUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Functions/Purchasing/PurchasingTransactionUpdate.cs b/Intacct.SDK/Functions/Purchasing/PurchasingTransactionUpdate.cs index 0eeb280c..943789bd 100644 --- a/Intacct.SDK/Functions/Purchasing/PurchasingTransactionUpdate.cs +++ b/Intacct.SDK/Functions/Purchasing/PurchasingTransactionUpdate.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Intacct.SDK.csproj b/Intacct.SDK/Intacct.SDK.csproj index f6870d41..5642bd0b 100644 --- a/Intacct.SDK/Intacct.SDK.csproj +++ b/Intacct.SDK/Intacct.SDK.csproj @@ -2,7 +2,7 @@ netstandard1.6 Intacct.SDK - 2.0.6 + 2.1.0 intacct Sage Intacct SDK Sage Intacct SDK for .NET @@ -10,7 +10,7 @@ https://github.com/Intacct/intacct-sdk-net/blob/master/LICENSE https://developer.intacct.com/tools/sdk-net/ https://github.com/Intacct/intacct-sdk-net/releases - Copyright © 2018 Sage Intacct, Inc. + Copyright © 2019 Sage Intacct, Inc. intacct sdk sage diff --git a/Intacct.SDK/Logging/MessageFormatter.cs b/Intacct.SDK/Logging/MessageFormatter.cs index 1420a65b..969062dc 100644 --- a/Intacct.SDK/Logging/MessageFormatter.cs +++ b/Intacct.SDK/Logging/MessageFormatter.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/OfflineClient.cs b/Intacct.SDK/OfflineClient.cs index 4297b820..acbcb1e8 100644 --- a/Intacct.SDK/OfflineClient.cs +++ b/Intacct.SDK/OfflineClient.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/OnlineClient.cs b/Intacct.SDK/OnlineClient.cs index bed37cd9..3f727b4d 100644 --- a/Intacct.SDK/OnlineClient.cs +++ b/Intacct.SDK/OnlineClient.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/RequestConfig.cs b/Intacct.SDK/RequestConfig.cs index a745bfba..80e8805f 100644 --- a/Intacct.SDK/RequestConfig.cs +++ b/Intacct.SDK/RequestConfig.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/SessionProvider.cs b/Intacct.SDK/SessionProvider.cs index ec750174..9351fdd4 100644 --- a/Intacct.SDK/SessionProvider.cs +++ b/Intacct.SDK/SessionProvider.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -45,8 +45,15 @@ public static async Task Factory(ClientConfig config = null) NoRetryServerErrorCodes = new int[] { }, // Retry all 500 level errors }; + ApiSessionCreate apiFunction = new ApiSessionCreate(); + + if (!string.IsNullOrWhiteSpace(config.SessionId) && config.EntityId != null) + { + apiFunction.EntityId = config.EntityId; + } + OnlineClient client = new OnlineClient(config); - OnlineResponse response = await client.Execute(new ApiSessionCreate(), requestConfig).ConfigureAwait(false); + OnlineResponse response = await client.Execute(apiFunction, requestConfig).ConfigureAwait(false); Authentication authentication = response.Authentication; Result result = response.Results[0]; @@ -56,8 +63,9 @@ public static async Task Factory(ClientConfig config = null) List data = result.Data; XElement api = data[0]; - config.SessionId = api.Element("sessionid").Value; - config.EndpointUrl = api.Element("endpoint").Value; + config.SessionId = api.Element("sessionid")?.Value; + config.EndpointUrl = api.Element("endpoint")?.Value; + config.EntityId = api.Element("locationid")?.Value; config.CompanyId = authentication.CompanyId; config.UserId = authentication.UserId; diff --git a/Intacct.SDK/Xml/AbstractResponse.cs b/Intacct.SDK/Xml/AbstractResponse.cs index 10f6a817..784f9353 100644 --- a/Intacct.SDK/Xml/AbstractResponse.cs +++ b/Intacct.SDK/Xml/AbstractResponse.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/IXmlObject.cs b/Intacct.SDK/Xml/IXmlObject.cs index 293e1253..8063aba3 100644 --- a/Intacct.SDK/Xml/IXmlObject.cs +++ b/Intacct.SDK/Xml/IXmlObject.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/IaXmlWriter.cs b/Intacct.SDK/Xml/IaXmlWriter.cs index 362e8498..5261b129 100644 --- a/Intacct.SDK/Xml/IaXmlWriter.cs +++ b/Intacct.SDK/Xml/IaXmlWriter.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/LoggingHandler.cs b/Intacct.SDK/Xml/LoggingHandler.cs index ac0e8ca3..f712d5d8 100644 --- a/Intacct.SDK/Xml/LoggingHandler.cs +++ b/Intacct.SDK/Xml/LoggingHandler.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/OfflineResponse.cs b/Intacct.SDK/Xml/OfflineResponse.cs index 992896d6..8ec2f2b1 100644 --- a/Intacct.SDK/Xml/OfflineResponse.cs +++ b/Intacct.SDK/Xml/OfflineResponse.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/OnlineResponse.cs b/Intacct.SDK/Xml/OnlineResponse.cs index 408f3056..0f6992e2 100644 --- a/Intacct.SDK/Xml/OnlineResponse.cs +++ b/Intacct.SDK/Xml/OnlineResponse.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/Request/ControlBlock.cs b/Intacct.SDK/Xml/Request/ControlBlock.cs index 84b05233..78760912 100644 --- a/Intacct.SDK/Xml/Request/ControlBlock.cs +++ b/Intacct.SDK/Xml/Request/ControlBlock.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/Request/IAuthentication.cs b/Intacct.SDK/Xml/Request/IAuthentication.cs index 2cf0abc8..e0a9dac9 100644 --- a/Intacct.SDK/Xml/Request/IAuthentication.cs +++ b/Intacct.SDK/Xml/Request/IAuthentication.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/Request/LoginAuthentication.cs b/Intacct.SDK/Xml/Request/LoginAuthentication.cs index 6ecd6e34..e92285a4 100644 --- a/Intacct.SDK/Xml/Request/LoginAuthentication.cs +++ b/Intacct.SDK/Xml/Request/LoginAuthentication.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -50,6 +50,14 @@ public string CompanyId } } + private string _entityId; + + public string EntityId + { + get => this._entityId; + set => _entityId = value; + } + private string _password; public string Password @@ -65,11 +73,12 @@ public string Password } } - public LoginAuthentication(string userId, string companyId, string password) + public LoginAuthentication(string userId, string companyId, string password, string entityId = null) { this.UserId = userId; this.CompanyId = companyId; this.Password = password; + this.EntityId = entityId; } public void WriteXml(ref IaXmlWriter xml) @@ -79,6 +88,10 @@ public void WriteXml(ref IaXmlWriter xml) xml.WriteElementString("userid", this.UserId); xml.WriteElementString("companyid", this.CompanyId); xml.WriteElementString("password", this.Password); + if (this.EntityId != null) + { + xml.WriteElementString("locationid", this.EntityId); + } xml.WriteEndElement(); // login xml.WriteEndElement(); // authentication } diff --git a/Intacct.SDK/Xml/Request/MockHandler.cs b/Intacct.SDK/Xml/Request/MockHandler.cs index 528ce1be..58d0c1de 100644 --- a/Intacct.SDK/Xml/Request/MockHandler.cs +++ b/Intacct.SDK/Xml/Request/MockHandler.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/Request/OperationBlock.cs b/Intacct.SDK/Xml/Request/OperationBlock.cs index 3dbf08c8..1cca2ca4 100644 --- a/Intacct.SDK/Xml/Request/OperationBlock.cs +++ b/Intacct.SDK/Xml/Request/OperationBlock.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -44,7 +44,7 @@ public OperationBlock(ClientConfig clientConfig, RequestConfig requestConfig, Li else if (credentials != null && credentials.GetType() == typeof(LoginCredentials)) { LoginCredentials loginCreds = credentials as LoginCredentials; - this.Authentication = new LoginAuthentication(loginCreds.UserId, loginCreds.CompanyId, loginCreds.Password); + this.Authentication = new LoginAuthentication(loginCreds.UserId, loginCreds.CompanyId, loginCreds.Password, loginCreds.EntityId); } else if (!string.IsNullOrEmpty(clientConfig.SessionId)) { @@ -56,7 +56,7 @@ public OperationBlock(ClientConfig clientConfig, RequestConfig requestConfig, Li && !string.IsNullOrEmpty(clientConfig.UserPassword) ) { - Authentication = new LoginAuthentication(clientConfig.UserId, clientConfig.CompanyId, clientConfig.UserPassword); + Authentication = new LoginAuthentication(clientConfig.UserId, clientConfig.CompanyId, clientConfig.UserPassword, clientConfig.EntityId); } else { diff --git a/Intacct.SDK/Xml/Request/SessionAuthentication.cs b/Intacct.SDK/Xml/Request/SessionAuthentication.cs index 5c488ef6..c5a44d35 100644 --- a/Intacct.SDK/Xml/Request/SessionAuthentication.cs +++ b/Intacct.SDK/Xml/Request/SessionAuthentication.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/RequestBlock.cs b/Intacct.SDK/Xml/RequestBlock.cs index ca22de6c..1aeb9523 100644 --- a/Intacct.SDK/Xml/RequestBlock.cs +++ b/Intacct.SDK/Xml/RequestBlock.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/RequestHandler.cs b/Intacct.SDK/Xml/RequestHandler.cs index f51bcaad..23c2ba44 100644 --- a/Intacct.SDK/Xml/RequestHandler.cs +++ b/Intacct.SDK/Xml/RequestHandler.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -26,7 +26,7 @@ namespace Intacct.SDK.Xml { public class RequestHandler { - public const string Version = "2.0.6"; + public const string Version = "2.1.0"; public ClientConfig ClientConfig; diff --git a/Intacct.SDK/Xml/Response/Authentication.cs b/Intacct.SDK/Xml/Response/Authentication.cs index c73a5939..694c1ec6 100644 --- a/Intacct.SDK/Xml/Response/Authentication.cs +++ b/Intacct.SDK/Xml/Response/Authentication.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy @@ -25,6 +25,8 @@ public class Authentication public string UserId { get; } public string CompanyId { get; } + + public string EntityId { get; } public Authentication(XElement authentication) { @@ -48,8 +50,15 @@ public Authentication(XElement authentication) throw new IntacctException("Authentication block is missing companyid element"); } this.CompanyId = companyId.Value; + + var entityId = authentication.Element("locationid"); + if (entityId != null) + { + this.EntityId = entityId.Value; + } + - // TODO add getter/setter for elements: clientstatus, clientid, locationid, sessiontimestamp + // TODO add getter/setter for elements: clientstatus, clientid, sessiontimestamp } } } \ No newline at end of file diff --git a/Intacct.SDK/Xml/Response/Control.cs b/Intacct.SDK/Xml/Response/Control.cs index 3e70d4ce..a6ec1f33 100644 --- a/Intacct.SDK/Xml/Response/Control.cs +++ b/Intacct.SDK/Xml/Response/Control.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/Response/ErrorMessage.cs b/Intacct.SDK/Xml/Response/ErrorMessage.cs index e75b327d..4ab7ba1a 100644 --- a/Intacct.SDK/Xml/Response/ErrorMessage.cs +++ b/Intacct.SDK/Xml/Response/ErrorMessage.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy diff --git a/Intacct.SDK/Xml/Response/Result.cs b/Intacct.SDK/Xml/Response/Result.cs index 584bb270..55b6fe9e 100644 --- a/Intacct.SDK/Xml/Response/Result.cs +++ b/Intacct.SDK/Xml/Response/Result.cs @@ -1,5 +1,5 @@ /* - * Copyright 2018 Sage Intacct, Inc. + * Copyright 2019 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy