-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #243 from avadev/24.6.3
Update for 24.6.3
- Loading branch information
Showing
23 changed files
with
905 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
using System; | ||
|
||
/* | ||
* 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> | ||
/// | ||
/// </summary> | ||
public enum CertificateEcmStatus | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
None = 0, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
Expired = 1, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
Invalid = 2, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
Valid = 3, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
PendingFuture = 4, | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
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> | ||
/// Certificate with exemption reason and exposure zone. Exposed in url $includes | ||
/// </summary> | ||
public class ActiveCertificateModel | ||
{ | ||
/// <summary> | ||
/// Certificate ID. | ||
/// </summary> | ||
public Int64? id { get; set; } | ||
|
||
/// <summary> | ||
/// Created date time | ||
/// </summary> | ||
public DateTime? created { get; set; } | ||
|
||
/// <summary> | ||
/// Modified date time | ||
/// </summary> | ||
public DateTime? modified { get; set; } | ||
|
||
/// <summary> | ||
/// Certificate's expected tax number | ||
/// </summary> | ||
public String expectedTaxNumber { get; set; } | ||
|
||
/// <summary> | ||
/// Certificate's actual tax number | ||
/// </summary> | ||
public String actualTaxNumber { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public ExposureZoneModel exposureZone { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public ExemptionReasonModel expectedTaxCode { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public ExemptionReasonModel actualTaxCode { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public CertificateModel certificate { 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 }); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
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> | ||
/// | ||
/// </summary> | ||
public class AssociatedObjectDeletedErrorDetailsModel | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public ErrorCodeId? code { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public Int32? number { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public String message { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public String description { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public String faultCode { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public String faultSubCode { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public String helpLink { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public String refersTo { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public SeverityLevel? severity { 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 }); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
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> | ||
/// Invalid reason for the certificate | ||
/// </summary> | ||
public class CertificateInvalidReasonModel | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public Int32? id { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public String name { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public String description { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public Boolean? systemCode { 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 }); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
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> | ||
/// certificate log for a customer. Exposed in url $includes | ||
/// </summary> | ||
public class CertificateLogModel | ||
{ | ||
/// <summary> | ||
/// Log ID | ||
/// </summary> | ||
public Int64? id { get; set; } | ||
|
||
/// <summary> | ||
/// Certificate ID | ||
/// </summary> | ||
public Int64? certificateId { get; set; } | ||
|
||
/// <summary> | ||
/// Account name | ||
/// </summary> | ||
public String account { get; set; } | ||
|
||
/// <summary> | ||
/// Log description | ||
/// </summary> | ||
public String entry { get; set; } | ||
|
||
/// <summary> | ||
/// Date of creation for log entry | ||
/// </summary> | ||
public DateTime? created { 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 }); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.