Skip to content

Commit

Permalink
22.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-developer committed Jan 28, 2022
1 parent 7c2fde3 commit eeed0d8
Show file tree
Hide file tree
Showing 8 changed files with 859 additions and 705 deletions.
4 changes: 2 additions & 2 deletions GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
// Revision
//

[assembly: AssemblyVersion("21.12.0")]
[assembly: AssemblyFileVersion("21.12.0")]
[assembly: AssemblyVersion("22.2.0")]
[assembly: AssemblyFileVersion("22.2.0")]
1,463 changes: 761 additions & 702 deletions src/AvaTaxApi.cs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/Avalara.AvaTax.net20.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@
<Compile Include="models\AccountLicenseKeyModel.cs" />
<Compile Include="models\AccountMigrationStatusModel.cs" />
<Compile Include="models\AccountModel.cs" />
<Compile Include="models\ACHEntryDetailModel.cs" />
<Compile Include="models\ActivateAccountModel.cs" />
<Compile Include="models\AddressesModel.cs" />
<Compile Include="models\AddressInfo.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/Avalara.AvaTax.net45.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@
<Compile Include="models\AccountLicenseKeyModel.cs" />
<Compile Include="models\AccountMigrationStatusModel.cs" />
<Compile Include="models\AccountModel.cs" />
<Compile Include="models\ACHEntryDetailModel.cs" />
<Compile Include="models\ActivateAccountModel.cs" />
<Compile Include="models\AddressesModel.cs" />
<Compile Include="models\AddressInfo.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/Avalara.AvaTax.net461.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@
<Compile Include="models\AccountLicenseKeyModel.cs" />
<Compile Include="models\AccountMigrationStatusModel.cs" />
<Compile Include="models\AccountModel.cs" />
<Compile Include="models\ACHEntryDetailModel.cs" />
<Compile Include="models\ActivateAccountModel.cs" />
<Compile Include="models\AddressesModel.cs" />
<Compile Include="models\AddressInfo.cs" />
Expand Down
2 changes: 1 addition & 1 deletion src/Avalara.AvaTax.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>Avalara.AvaTax</id>

<version>21.12.0</version>
<version>22.2.0</version>

<title>Avalara AvaTax SDK</title>
<description>Add world-class tax estimation and calculation to your project with Avalara's AvaTax suite of APIs and services.</description>
Expand Down
75 changes: 75 additions & 0 deletions src/models/ACHEntryDetailModel.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;

/*
* AvaTax API Client Library
*
* (c) 2004-2019 Avalara, Inc.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Genevieve Conty
* @author Greg Hester
* Swagger name: AvaTaxClient
*/

namespace Avalara.AvaTax.RestClient
{
/// <summary>
/// An edit to be made on a filing calendar.
/// </summary>
public class ACHEntryDetailModel
{
/// <summary>
/// Company Id
/// </summary>
public Int32? companyId { get; set; }

/// <summary>
/// Company Name
/// </summary>
public String companyName { get; set; }

/// <summary>
/// State
/// </summary>
public String state { get; set; }

/// <summary>
/// State Region
/// </summary>
public String stateRegion { get; set; }

/// <summary>
/// Individual Id
/// </summary>
public String individualId { get; set; }

/// <summary>
/// IndividualName
/// </summary>
public String individualName { get; set; }

/// <summary>
/// Amount
/// </summary>
public Decimal? amount { get; set; }

/// <summary>
/// TraceNumber
/// </summary>
public String traceNumber { get; set; }


/// <summary>
/// Convert this object to a JSON string of itself
/// </summary>
/// <returns>A JSON string of this object</returns>
public override string ToString()
{
return JsonConvert.SerializeObject(this, new JsonSerializerSettings() { Formatting = Formatting.Indented });
}
}
}
17 changes: 17 additions & 0 deletions src/models/DeclareNexusByAddressModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,23 @@ public class DeclareNexusByAddressModel
/// </summary>
public DateTime? endDate { get; set; }

/// <summary>
/// The type group of nexus that this company is declaring
/// Use [ListTaxTypeGroups](https://developer.avalara.com/api-reference/avatax/rest/v2/methods/Definitions/ListTaxTypeGroups/) API for a list of nexus tax type groups.
///
/// This field is defined by Avalara. All Avalara-defined fields must match an Avalara-defined nexus object found by calling `ListNexus`.
/// NOTE: This optional field will trigger nexus subtype lookup when populated. When using make sure TaxTypeGroup matches corresponding NexusTaxTypeGroup
/// </summary>
public String taxTypeGroup { get; set; }

/// <summary>
/// The type of nexus that this company is declaring.Replaces NexusTypeId.
/// Use [ListNexusTaxTypeGroups](https://developer.avalara.com/api-reference/avatax/rest/v2/methods/Definitions/ListNexusTaxTypeGroups/) API for a list of nexus tax type groups.
///
/// This field is defined by Avalara. All Avalara-defined fields must match an Avalara-defined nexus object found by calling `ListNexus`.
/// </summary>
public String nexusTaxTypeGroup { get; set; }

/// <summary>
/// First line of the street address
/// </summary>
Expand Down

0 comments on commit eeed0d8

Please sign in to comment.