-
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 #277 from avadev/23.4.1
Update for 23.4.1
- Loading branch information
Showing
12 changed files
with
536 additions
and
519 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
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 |
---|---|---|
@@ -1,82 +1,76 @@ | ||
/* | ||
* 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 <jonathan.wenger@avalara.com> | ||
* @author Sachin Baijal <sachin.baijal@avalara.com> | ||
* @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"; | ||
/* | ||
* 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 <jonathan.wenger@avalara.com> | ||
* @author Sachin Baijal <sachin.baijal@avalara.com> | ||
* @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 { RequiredFilingCalendarDataFieldModel } from "./requiredFilingCalendarDataFieldModel"; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Represents a list of statuses of returns available in skyscraper | ||
* @export | ||
* @class SkyscraperStatusModel | ||
*/ | ||
@JsonObject("SkyscraperStatusModel") | ||
export class SkyscraperStatusModel { | ||
/** | ||
* @type {string} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("name", String, true) | ||
name?: string | undefined = undefined; | ||
/** | ||
* @type {string[]} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("taxFormCodes", [String], true) | ||
taxFormCodes?: string[] | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("country", String, true) | ||
country?: string | undefined = undefined; | ||
/** | ||
* @type {Enums.ScraperType} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("scraperType", Enums.ScraperTypeConverter, true) | ||
scraperType?: Enums.ScraperType | undefined = undefined; | ||
/** | ||
* @type {boolean} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("isAvailable", Boolean, true) | ||
isAvailable?: boolean | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("expectedResponseTime", String, true) | ||
expectedResponseTime?: string | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("message", String, true) | ||
message?: string | undefined = undefined; | ||
/** | ||
* @type {requiredFilingCalendarDataFieldModel[]} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty( | ||
"requiredFilingCalendarDataFields", | ||
[RequiredFilingCalendarDataFieldModel], | ||
true | ||
) | ||
requiredFilingCalendarDataFields?: | ||
| RequiredFilingCalendarDataFieldModel[] | ||
| undefined = undefined; | ||
} | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Represents a list of statuses of returns available in skyscraper | ||
* @export | ||
* @class SkyscraperStatusModel | ||
*/ | ||
@JsonObject("SkyscraperStatusModel") | ||
export class SkyscraperStatusModel { | ||
/** | ||
* @type {string} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("name", String, true) | ||
name?: string | undefined = undefined; | ||
/** | ||
* @type {string[]} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("taxFormCodes", [String], true) | ||
taxFormCodes?: string[] | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("country", String, true) | ||
country?: string | undefined = undefined; | ||
/** | ||
* @type {Enums.ScraperType} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("scraperType", Enums.ScraperTypeConverter, true) | ||
scraperType?: Enums.ScraperType | undefined = undefined; | ||
/** | ||
* @type {boolean} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("isAvailable", Boolean, true) | ||
isAvailable?: boolean | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("expectedResponseTime", String, true) | ||
expectedResponseTime?: string | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("message", String, true) | ||
message?: string | undefined = undefined; | ||
/** | ||
* @type {requiredFilingCalendarDataFieldModel[]} | ||
* @memberof SkyscraperStatusModel | ||
*/ | ||
@JsonProperty("requiredFilingCalendarDataFields", [RequiredFilingCalendarDataFieldModel], true) | ||
requiredFilingCalendarDataFields?: RequiredFilingCalendarDataFieldModel[] | 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
Oops, something went wrong.