Skip to content

Commit 912ac70

Browse files
author
Jonathan Wenger
committed
25.6.0 Update - Add A1099 to SDK
1 parent fbfd7cc commit 912ac70

File tree

240 files changed

+103282
-1670
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

240 files changed

+103282
-1670
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@ build
2323
.idea/
2424

2525
.env
26+
27+
/out

README.md

Lines changed: 190 additions & 59 deletions
Large diffs are not rendered by default.

docs/A1099/V2/Attribute.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
3+
# Attribute
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**dryRun** | **Boolean** | | [optional] |
11+
|**upsert** | **Boolean** | | [optional] |
12+
|**status** | [**StatusEnum**](#StatusEnum) | | [optional] |
13+
|**errorMessage** | **String** | | [optional] |
14+
|**totalProcessed** | **Integer** | | [optional] |
15+
|**totalRows** | **Integer** | | [optional] |
16+
|**updatedValid** | **Integer** | | [optional] |
17+
|**updatedNoEmail** | **Integer** | | [optional] |
18+
|**updatedInvalid** | **Integer** | | [optional] |
19+
|**skippedDuplicate** | **Integer** | | [optional] |
20+
|**skippedInvalid** | **Integer** | | [optional] |
21+
|**skippedMultipleMatches** | **Integer** | | [optional] |
22+
|**notFound** | **Integer** | | [optional] |
23+
|**createdInvalid** | **Integer** | | [optional] |
24+
|**createdNoEmail** | **Integer** | | [optional] |
25+
|**createdValid** | **Integer** | | [optional] |
26+
27+
28+
29+
## Enum: StatusEnum
30+
31+
| Name | Value |
32+
|---- | -----|
33+
| IN_PROGRESS | "InProgress" |
34+
| SUCCESS | "Success" |
35+
| FAILED | "Failed" |
36+
37+
38+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
3+
# AuthorizedApiRequestModel
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**path** | **String** | The path and query of the API request you want to pre-authorize, omitting the leading /api/ | [optional] |
11+
|**ttl** | **Integer** | Seconds until this AuthorizedApiRequest should expire, 3600 if omitted; values greater than 86400 will not be honored | [optional] |
12+
13+
14+
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
3+
# AuthorizedApiRequestV2DataModel
4+
5+
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**id** | **String** | | [optional] |
12+
|**path** | **String** | | [optional] |
13+
|**expiresAt** | **String** | | [optional] |
14+
15+
16+

docs/A1099/V2/BaseCompanyModel.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
3+
# BaseCompanyModel
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**name** | **String** | | [optional] |
11+
|**email** | **String** | | [optional] |
12+
|**address** | **String** | | [optional] |
13+
|**city** | **String** | | [optional] |
14+
|**state** | **String** | | [optional] |
15+
|**zip** | **String** | | [optional] |
16+
|**telephone** | **String** | | [optional] |
17+
|**tin** | **String** | | [optional] |
18+
|**dbaName** | **String** | | [optional] |
19+
|**referenceId** | **String** | | [optional] |
20+
|**doTinMatch** | **Boolean** | | [optional] |
21+
|**groupName** | **String** | | [optional] |
22+
|**foreignProvince** | **String** | | [optional] |
23+
|**countryCode** | **String** | | [optional] |
24+
|**resendRequests** | **Boolean** | | [optional] |
25+
|**resendIntervalDays** | **Integer** | | [optional] |
26+
|**maxReminderAttempts** | **Integer** | | [optional] |
27+
28+
29+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
# BaseFormListRequest
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**formType** | **String** | | [optional] |
11+
12+
13+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
3+
# BulkUpsert1099FormsRequest
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**forms** | [**List<Form1099RListItem>**](Form1099RListItem.md) | | [optional] |
11+
|**formType** | **String** | | [optional] |
12+
13+
14+

0 commit comments

Comments
 (0)