Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for 23.5.0 #226

Merged
merged 1 commit into from
May 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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