Skip to content

Commit

Permalink
23.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-developer committed May 18, 2023
1 parent effe1c1 commit 5c8fa23
Show file tree
Hide file tree
Showing 7 changed files with 188 additions and 45 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("23.4.1")]
[assembly: AssemblyFileVersion("23.4.1")]
[assembly: AssemblyVersion("23.5.0")]
[assembly: AssemblyFileVersion("23.5.0")]
64 changes: 42 additions & 22 deletions src/AvaTaxApi.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Avalara.AvaTax.RestClient.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>Avalara.AvaTax</id>

<version>23.4.1</version>
<version>23.5.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
58 changes: 38 additions & 20 deletions src/IAvaTaxClient.cs

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions src/models/NoticeResponsibilityDetail.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;

/*
* AvaTax API Client Library
*
* (c) 2004-2023 Avalara, Inc.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Jonathan Wenger <[email protected]>
* @author Sachin Baijal <[email protected]>
* Swagger name: AvaTaxClient
*/

namespace Avalara.AvaTax.RestClient
{
/// <summary>
/// NoticeResponsibility Model
/// </summary>
public class NoticeResponsibilityDetail
{
/// <summary>
/// The unique ID number of this filing frequency.
/// </summary>
public Int32? id { get; set; }

/// <summary>
/// TaxNoticeId
/// </summary>
public Int32 noticeId { get; set; }

/// <summary>
/// TaxNoticeResponsibilityId
/// </summary>
public Int32 taxNoticeResponsibilityId { 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 });
}
}
}
50 changes: 50 additions & 0 deletions src/models/NoticeRootCauseDetail.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;

/*
* AvaTax API Client Library
*
* (c) 2004-2023 Avalara, Inc.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Jonathan Wenger <[email protected]>
* @author Sachin Baijal <[email protected]>
* Swagger name: AvaTaxClient
*/

namespace Avalara.AvaTax.RestClient
{
/// <summary>
/// NoticeRootCause Model
/// </summary>
public class NoticeRootCauseDetail
{
/// <summary>
/// The unique ID number of this filing frequency.
/// </summary>
public Int32? id { get; set; }

/// <summary>
/// TaxNoticeId
/// </summary>
public Int32 noticeId { get; set; }

/// <summary>
/// TaxNoticeRootCauseId
/// </summary>
public Int32 taxNoticeRootCauseId { 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 });
}
}
}
5 changes: 5 additions & 0 deletions src/models/NoticeStatusModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public class NoticeStatusModel
/// </summary>
public Int32? sortOrder { get; set; }

/// <summary>
/// The active Flag of this tax authority type.
/// </summary>
public Boolean? activeFlag { get; set; }


/// <summary>
/// Convert this object to a JSON string of itself
Expand Down

0 comments on commit 5c8fa23

Please sign in to comment.