-
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 #251 from avadev/24.10.0
Update for 24.10.0
- Loading branch information
Showing
14 changed files
with
510 additions
and
98 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
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
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
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
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,104 @@ | ||
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> | ||
/// Account Linkage output model | ||
/// </summary> | ||
public class FirmClientLinkageModel | ||
{ | ||
/// <summary> | ||
/// The unique ID number of firm-client linkage. | ||
/// </summary> | ||
public Int32? id { get; set; } | ||
|
||
/// <summary> | ||
/// Firm Account to be linked with the firm | ||
/// </summary> | ||
public Int32? firmAccountId { get; set; } | ||
|
||
/// <summary> | ||
/// FIrm Account name | ||
/// </summary> | ||
public String firmAccountName { get; set; } | ||
|
||
/// <summary> | ||
/// Client Account to be linked with the firm | ||
/// </summary> | ||
public Int32? clientAccountId { get; set; } | ||
|
||
/// <summary> | ||
/// Client Account name | ||
/// </summary> | ||
public String clientAccountName { get; set; } | ||
|
||
/// <summary> | ||
/// Created date of the linkage | ||
/// </summary> | ||
public DateTime? createdDate { get; set; } | ||
|
||
/// <summary> | ||
/// User who created the linkage | ||
/// </summary> | ||
public Int32? createdUserId { get; set; } | ||
|
||
/// <summary> | ||
/// Modified date of the linkage | ||
/// </summary> | ||
public DateTime? modifiedDate { get; set; } | ||
|
||
/// <summary> | ||
/// User who modified the linkage | ||
/// </summary> | ||
public Int32? modifiedUserId { get; set; } | ||
|
||
/// <summary> | ||
/// The status of the account linkage. The following are the available statuses | ||
/// * Requested - When a linkage is requested | ||
/// * Approved - When the linkage is approved | ||
/// * Rejected - When the linkage is rejected | ||
/// * Revoked - When the linkage is revoked. | ||
/// </summary> | ||
public FirmClientLinkageStatus? status { get; set; } | ||
|
||
/// <summary> | ||
/// This is set to 1 if the linkage is deleted. | ||
/// </summary> | ||
public Boolean? isDeleted { get; set; } | ||
|
||
/// <summary> | ||
/// Name of the firm's point of contact person for the client | ||
/// </summary> | ||
public String firmContactName { get; set; } | ||
|
||
/// <summary> | ||
/// Email of the firm's point of contact person for the client | ||
/// </summary> | ||
public String firmContactEmail { 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
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,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> | ||
/// ItemTaxCodeDetailsOutputModel | ||
/// </summary> | ||
public class ItemTaxCodeDetailsOutputModel | ||
{ | ||
/// <summary> | ||
/// TaxCode assigned to Item | ||
/// </summary> | ||
public String taxCode { get; set; } | ||
|
||
/// <summary> | ||
/// Description for the TaxCode | ||
/// </summary> | ||
public String description { get; set; } | ||
|
||
/// <summary> | ||
/// Provides if the TaxCode is Active or Not | ||
/// </summary> | ||
public Boolean? isActive { 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
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
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