-
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 #302 from avadev/24.10.0
Update for 24.10.0
- Loading branch information
Showing
12 changed files
with
306 additions
and
27 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/* | ||
* AvaTax Software Development Kit for JavaScript | ||
* | ||
* (c) 2004-2022 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]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JS-SDK | ||
*/ | ||
|
||
import * as Enums from '../enums/index'; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Account Linkage output model | ||
* @export | ||
* @class FirmClientLinkageModel | ||
*/ | ||
@JsonObject("FirmClientLinkageModel") | ||
export class FirmClientLinkageModel { | ||
/** | ||
* @type {number} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("id", Number, true) | ||
id?: number | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("firmAccountId", Number, true) | ||
firmAccountId?: number | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("firmAccountName", String, true) | ||
firmAccountName?: string | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("clientAccountId", Number, true) | ||
clientAccountId?: number | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("clientAccountName", String, true) | ||
clientAccountName?: string | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("createdDate", DateConverter, true) | ||
createdDate?: Date | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("createdUserId", Number, true) | ||
createdUserId?: number | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("modifiedDate", DateConverter, true) | ||
modifiedDate?: Date | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("modifiedUserId", Number, true) | ||
modifiedUserId?: number | undefined = undefined; | ||
/** | ||
* @type {Enums.FirmClientLinkageStatus} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("status", Enums.FirmClientLinkageStatusConverter, true) | ||
status?: Enums.FirmClientLinkageStatus | undefined = undefined; | ||
/** | ||
* @type {boolean} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("isDeleted", Boolean, true) | ||
isDeleted?: boolean | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("firmContactName", String, true) | ||
firmContactName?: string | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof FirmClientLinkageModel | ||
*/ | ||
@JsonProperty("firmContactEmail", String, true) | ||
firmContactEmail?: string | undefined = undefined; | ||
} |
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,45 @@ | ||
/* | ||
* AvaTax Software Development Kit for JavaScript | ||
* | ||
* (c) 2004-2022 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]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JS-SDK | ||
*/ | ||
|
||
import * as Enums from '../enums/index'; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* ItemTaxCodeDetailsOutputModel | ||
* @export | ||
* @class ItemTaxCodeDetailsOutputModel | ||
*/ | ||
@JsonObject("ItemTaxCodeDetailsOutputModel") | ||
export class ItemTaxCodeDetailsOutputModel { | ||
/** | ||
* @type {string} | ||
* @memberof ItemTaxCodeDetailsOutputModel | ||
*/ | ||
@JsonProperty("taxCode", String, true) | ||
taxCode?: string | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof ItemTaxCodeDetailsOutputModel | ||
*/ | ||
@JsonProperty("description", String, true) | ||
description?: string | undefined = undefined; | ||
/** | ||
* @type {boolean} | ||
* @memberof ItemTaxCodeDetailsOutputModel | ||
*/ | ||
@JsonProperty("isActive", Boolean, true) | ||
isActive?: boolean | undefined = undefined; | ||
} |
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