Skip to content

Commit 85851f7

Browse files
Merge pull request #198 from avadev/22.6.1
Update for 22.6.1
2 parents 4a30d48 + 2c1e436 commit 85851f7

10 files changed

+1369
-1246
lines changed

GlobalAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
// Revision
3131
//
3232

33-
[assembly: AssemblyVersion("22.5.0")]
34-
[assembly: AssemblyFileVersion("22.5.0")]
33+
[assembly: AssemblyVersion("22.6.1")]
34+
[assembly: AssemblyFileVersion("22.6.1")]

src/AvaTaxApi.cs

Lines changed: 1243 additions & 1243 deletions
Large diffs are not rendered by default.

src/Avalara.AvaTax.net20.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,8 @@
162162
<Compile Include="models\AccountLicenseKeyModel.cs" />
163163
<Compile Include="models\AccountMigrationStatusModel.cs" />
164164
<Compile Include="models\AccountModel.cs" />
165+
<Compile Include="models\AccountTsaAccessDurationModel.cs" />
166+
<Compile Include="models\AccountTsaAccessModel.cs" />
165167
<Compile Include="models\ACHEntryDetailModel.cs" />
166168
<Compile Include="models\ActivateAccountModel.cs" />
167169
<Compile Include="models\AddressesModel.cs" />

src/Avalara.AvaTax.net45.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,8 @@
167167
<Compile Include="models\AccountLicenseKeyModel.cs" />
168168
<Compile Include="models\AccountMigrationStatusModel.cs" />
169169
<Compile Include="models\AccountModel.cs" />
170+
<Compile Include="models\AccountTsaAccessDurationModel.cs" />
171+
<Compile Include="models\AccountTsaAccessModel.cs" />
170172
<Compile Include="models\ACHEntryDetailModel.cs" />
171173
<Compile Include="models\ActivateAccountModel.cs" />
172174
<Compile Include="models\AddressesModel.cs" />

src/Avalara.AvaTax.net461.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,8 @@
167167
<Compile Include="models\AccountLicenseKeyModel.cs" />
168168
<Compile Include="models\AccountMigrationStatusModel.cs" />
169169
<Compile Include="models\AccountModel.cs" />
170+
<Compile Include="models\AccountTsaAccessDurationModel.cs" />
171+
<Compile Include="models\AccountTsaAccessModel.cs" />
170172
<Compile Include="models\ACHEntryDetailModel.cs" />
171173
<Compile Include="models\ActivateAccountModel.cs" />
172174
<Compile Include="models\AddressesModel.cs" />

src/Avalara.AvaTax.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>Avalara.AvaTax</id>
55

6-
<version>22.5.0</version>
6+
<version>22.6.1</version>
77

88
<title>Avalara AvaTax SDK</title>
99
<description>Add world-class tax estimation and calculation to your project with Avalara's AvaTax suite of APIs and services.</description>
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using Newtonsoft.Json;
4+
5+
/*
6+
* AvaTax API Client Library
7+
*
8+
* (c) 2004-2019 Avalara, Inc.
9+
*
10+
* For the full copyright and license information, please view the LICENSE
11+
* file that was distributed with this source code.
12+
*
13+
* @author Genevieve Conty
14+
* @author Greg Hester
15+
* Swagger name: AvaTaxClient
16+
*/
17+
18+
namespace Avalara.AvaTax.RestClient
19+
{
20+
/// <summary>
21+
/// Specifies a duration for which to grant TSA accounts write access.
22+
/// See AVT-25316
23+
/// </summary>
24+
public class AccountTsaAccessDurationModel
25+
{
26+
/// <summary>
27+
/// Number of minutes
28+
/// </summary>
29+
public Int32? minutes { get; set; }
30+
31+
/// <summary>
32+
/// Number of hours
33+
/// </summary>
34+
public Int32? hours { get; set; }
35+
36+
/// <summary>
37+
/// Number of days
38+
/// </summary>
39+
public Int32? days { get; set; }
40+
41+
42+
/// <summary>
43+
/// Convert this object to a JSON string of itself
44+
/// </summary>
45+
/// <returns>A JSON string of this object</returns>
46+
public override string ToString()
47+
{
48+
return JsonConvert.SerializeObject(this, new JsonSerializerSettings() { Formatting = Formatting.Indented });
49+
}
50+
}
51+
}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using Newtonsoft.Json;
4+
5+
/*
6+
* AvaTax API Client Library
7+
*
8+
* (c) 2004-2019 Avalara, Inc.
9+
*
10+
* For the full copyright and license information, please view the LICENSE
11+
* file that was distributed with this source code.
12+
*
13+
* @author Genevieve Conty
14+
* @author Greg Hester
15+
* Swagger name: AvaTaxClient
16+
*/
17+
18+
namespace Avalara.AvaTax.RestClient
19+
{
20+
/// <summary>
21+
/// Descibes a record of an account granting TSA accounts write access.
22+
/// See AVT-25316
23+
/// </summary>
24+
public class AccountTsaAccessModel
25+
{
26+
/// <summary>
27+
/// The id of the account to which the TSA access entry belongs to.
28+
/// </summary>
29+
public Int32? accountId { get; set; }
30+
31+
/// <summary>
32+
/// The user ID of the user who last modified this record.
33+
/// </summary>
34+
public Int32? modifiedUserId { get; set; }
35+
36+
/// <summary>
37+
/// The date/time when this record was last modified.
38+
/// </summary>
39+
public DateTime? modifiedDate { get; set; }
40+
41+
/// <summary>
42+
/// The date/time when this TSA access record expires.
43+
/// </summary>
44+
public DateTime? endDate { get; set; }
45+
46+
47+
/// <summary>
48+
/// Convert this object to a JSON string of itself
49+
/// </summary>
50+
/// <returns>A JSON string of this object</returns>
51+
public override string ToString()
52+
{
53+
return JsonConvert.SerializeObject(this, new JsonSerializerSettings() { Formatting = Formatting.Indented });
54+
}
55+
}
56+
}

src/models/FilingReturnModel.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ public class FilingReturnModel
3737
/// </summary>
3838
public Int64? filingCalendarId { get; set; }
3939

40+
/// <summary>
41+
/// The registration ID from the return's filing calendar.
42+
/// </summary>
43+
public String registrationId { get; set; }
44+
4045
/// <summary>
4146
/// The resourceFileId of the return. Will be null if not available.
4247
/// </summary>

src/models/MultiTaxFilingReturnModel.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ public class MultiTaxFilingReturnModel
3232
/// </summary>
3333
public Int64? filingCalendarId { get; set; }
3434

35+
/// <summary>
36+
/// The registration ID from the return's filing calendar.
37+
/// </summary>
38+
public String registrationId { get; set; }
39+
3540
/// <summary>
3641
/// The current status of the filing return.
3742
/// </summary>

0 commit comments

Comments
 (0)