Skip to content

Commit 46671fb

Browse files
Merge pull request #180 from avadev/22.2.0
Update for 22.2.0
2 parents 7c2fde3 + eeed0d8 commit 46671fb

File tree

8 files changed

+859
-705
lines changed

8 files changed

+859
-705
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("21.12.0")]
34-
[assembly: AssemblyFileVersion("21.12.0")]
33+
[assembly: AssemblyVersion("22.2.0")]
34+
[assembly: AssemblyFileVersion("22.2.0")]

src/AvaTaxApi.cs

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

src/Avalara.AvaTax.net20.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@
159159
<Compile Include="models\AccountLicenseKeyModel.cs" />
160160
<Compile Include="models\AccountMigrationStatusModel.cs" />
161161
<Compile Include="models\AccountModel.cs" />
162+
<Compile Include="models\ACHEntryDetailModel.cs" />
162163
<Compile Include="models\ActivateAccountModel.cs" />
163164
<Compile Include="models\AddressesModel.cs" />
164165
<Compile Include="models\AddressInfo.cs" />

src/Avalara.AvaTax.net45.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@
164164
<Compile Include="models\AccountLicenseKeyModel.cs" />
165165
<Compile Include="models\AccountMigrationStatusModel.cs" />
166166
<Compile Include="models\AccountModel.cs" />
167+
<Compile Include="models\ACHEntryDetailModel.cs" />
167168
<Compile Include="models\ActivateAccountModel.cs" />
168169
<Compile Include="models\AddressesModel.cs" />
169170
<Compile Include="models\AddressInfo.cs" />

src/Avalara.AvaTax.net461.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@
164164
<Compile Include="models\AccountLicenseKeyModel.cs" />
165165
<Compile Include="models\AccountMigrationStatusModel.cs" />
166166
<Compile Include="models\AccountModel.cs" />
167+
<Compile Include="models\ACHEntryDetailModel.cs" />
167168
<Compile Include="models\ActivateAccountModel.cs" />
168169
<Compile Include="models\AddressesModel.cs" />
169170
<Compile Include="models\AddressInfo.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>21.12.0</version>
6+
<version>22.2.0</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>

src/models/ACHEntryDetailModel.cs

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
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+
/// An edit to be made on a filing calendar.
22+
/// </summary>
23+
public class ACHEntryDetailModel
24+
{
25+
/// <summary>
26+
/// Company Id
27+
/// </summary>
28+
public Int32? companyId { get; set; }
29+
30+
/// <summary>
31+
/// Company Name
32+
/// </summary>
33+
public String companyName { get; set; }
34+
35+
/// <summary>
36+
/// State
37+
/// </summary>
38+
public String state { get; set; }
39+
40+
/// <summary>
41+
/// State Region
42+
/// </summary>
43+
public String stateRegion { get; set; }
44+
45+
/// <summary>
46+
/// Individual Id
47+
/// </summary>
48+
public String individualId { get; set; }
49+
50+
/// <summary>
51+
/// IndividualName
52+
/// </summary>
53+
public String individualName { get; set; }
54+
55+
/// <summary>
56+
/// Amount
57+
/// </summary>
58+
public Decimal? amount { get; set; }
59+
60+
/// <summary>
61+
/// TraceNumber
62+
/// </summary>
63+
public String traceNumber { get; set; }
64+
65+
66+
/// <summary>
67+
/// Convert this object to a JSON string of itself
68+
/// </summary>
69+
/// <returns>A JSON string of this object</returns>
70+
public override string ToString()
71+
{
72+
return JsonConvert.SerializeObject(this, new JsonSerializerSettings() { Formatting = Formatting.Indented });
73+
}
74+
}
75+
}

src/models/DeclareNexusByAddressModel.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,23 @@ public class DeclareNexusByAddressModel
3737
/// </summary>
3838
public DateTime? endDate { get; set; }
3939

40+
/// <summary>
41+
/// The type group of nexus that this company is declaring
42+
/// Use [ListTaxTypeGroups](https://developer.avalara.com/api-reference/avatax/rest/v2/methods/Definitions/ListTaxTypeGroups/) API for a list of nexus tax type groups.
43+
///
44+
/// This field is defined by Avalara. All Avalara-defined fields must match an Avalara-defined nexus object found by calling `ListNexus`.
45+
/// NOTE: This optional field will trigger nexus subtype lookup when populated. When using make sure TaxTypeGroup matches corresponding NexusTaxTypeGroup
46+
/// </summary>
47+
public String taxTypeGroup { get; set; }
48+
49+
/// <summary>
50+
/// The type of nexus that this company is declaring.Replaces NexusTypeId.
51+
/// Use [ListNexusTaxTypeGroups](https://developer.avalara.com/api-reference/avatax/rest/v2/methods/Definitions/ListNexusTaxTypeGroups/) API for a list of nexus tax type groups.
52+
///
53+
/// This field is defined by Avalara. All Avalara-defined fields must match an Avalara-defined nexus object found by calling `ListNexus`.
54+
/// </summary>
55+
public String nexusTaxTypeGroup { get; set; }
56+
4057
/// <summary>
4158
/// First line of the street address
4259
/// </summary>

0 commit comments

Comments
 (0)