Skip to content

Commit d3c0dba

Browse files
Merge pull request #19 from avadev/25.8.0
25.8.0
2 parents 13589c0 + 151ad3d commit d3c0dba

File tree

276 files changed

+45525
-3255
lines changed

Some content is hidden

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

276 files changed

+45525
-3255
lines changed

README.md

Lines changed: 76 additions & 39 deletions
Large diffs are not rendered by default.

docs/A1099/V2/CompaniesW9Api.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ All URIs are relative to *https://api-ava1099.eta.sbx.us-east-1.aws.avalara.io/a
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**createCompany**](CompaniesW9Api.md#createCompany) | **POST** /w9/companies | Creates a new company
8-
[**deleteCompany**](CompaniesW9Api.md#deleteCompany) | **DELETE** /w9/companies/{id} | Deletes a company
7+
[**createCompany**](CompaniesW9Api.md#createCompany) | **POST** /w9/companies | Create a company
8+
[**deleteCompany**](CompaniesW9Api.md#deleteCompany) | **DELETE** /w9/companies/{id} | Delete a company
99
[**getCompanies**](CompaniesW9Api.md#getCompanies) | **GET** /w9/companies | List companies
1010
[**getCompany**](CompaniesW9Api.md#getCompany) | **GET** /w9/companies/{id} | Retrieve a company
1111
[**updateCompany**](CompaniesW9Api.md#updateCompany) | **PUT** /w9/companies/{id} | Update a company
@@ -16,9 +16,9 @@ Method | HTTP request | Description
1616

1717
> CompanyResponseModel createCompany(avalaraVersion, xCorrelationId, xAvalaraClient, companyCreateUpdateRequestModel)
1818
19-
Creates a new company
19+
Create a company
2020

21-
Creates a new company
21+
Create a company.
2222

2323
### Example
2424

@@ -48,8 +48,8 @@ public class Example {
4848
ApiClient apiClient = new ApiClient(configuration);
4949

5050
CompaniesW9Api apiInstance = new CompaniesW9Api(apiClient);
51-
String avalaraVersion = "2.0"; // String | API version
52-
String xCorrelationId = "d0e29cf5-55bc-44e6-9894-3e1cd2923e5a"; // String | Unique correlation Id in a GUID format
51+
String avalaraVersion = "2.0.0"; // String | API version
52+
String xCorrelationId = "fe0b2c61-3b02-476a-ab45-cffe1b04e41a"; // String | Unique correlation Id in a GUID format
5353
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) .
5454
CompanyCreateUpdateRequestModel companyCreateUpdateRequestModel = new CompanyCreateUpdateRequestModel(); // CompanyCreateUpdateRequestModel | The company to create
5555
try {
@@ -102,9 +102,9 @@ Name | Type | Description | Notes
102102

103103
> deleteCompany(id, avalaraVersion, xCorrelationId, xAvalaraClient)
104104
105-
Deletes a company
105+
Delete a company
106106

107-
Deletes a company
107+
Delete a company.
108108

109109
### Example
110110

@@ -135,8 +135,8 @@ public class Example {
135135

136136
CompaniesW9Api apiInstance = new CompaniesW9Api(apiClient);
137137
String id = "id_example"; // String | The company to delete
138-
String avalaraVersion = "2.0"; // String | API version
139-
String xCorrelationId = "713ec82b-b94e-4e2f-8b82-0cecc0abb124"; // String | Unique correlation Id in a GUID format
138+
String avalaraVersion = "2.0.0"; // String | API version
139+
String xCorrelationId = "250cdf61-a491-4fce-9544-33316d95a0a2"; // String | Unique correlation Id in a GUID format
140140
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) .
141141
try {
142142
apiInstance.deleteCompany(id, avalaraVersion, xCorrelationId, xAvalaraClient);
@@ -221,14 +221,14 @@ public class Example {
221221
ApiClient apiClient = new ApiClient(configuration);
222222

223223
CompaniesW9Api apiInstance = new CompaniesW9Api(apiClient);
224-
String avalaraVersion = "2.0"; // String | API version
224+
String avalaraVersion = "2.0.0"; // String | API version
225225
String $filter = "$filter_example"; // String | A filter statement to identify specific records to retrieve. For more information on filtering, see <a href=\"https://developer.avalara.com/avatax/filtering-in-rest/\">Filtering in REST</a>.
226226
Integer $top = 56; // Integer | If zero or greater than 1000, return at most 1000 results. Otherwise, return this number of results. Used with skip to provide pagination for large datasets.
227227
Integer $skip = 56; // Integer | If nonzero, skip this number of results before returning data. Used with top to provide pagination for large datasets.
228228
String $orderBy = "$orderBy_example"; // String | A comma separated list of sort statements in the format (fieldname) [ASC|DESC], for example id ASC.
229229
Boolean count = true; // Boolean | If true, return the global count of elements in the collection.
230230
Boolean countOnly = true; // Boolean | If true, return ONLY the global count of elements in the collection. It only applies when count=true.
231-
String xCorrelationId = "38d61b75-2ccf-4a20-8fc0-6fc047805ec3"; // String | Unique correlation Id in a GUID format
231+
String xCorrelationId = "9bc362f8-548a-4a98-b44b-37da159b8126"; // String | Unique correlation Id in a GUID format
232232
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) .
233233
try {
234234
PaginatedQueryResultModelCompanyResponse result = apiInstance.getCompanies(avalaraVersion, $filter, $top, $skip, $orderBy, count, countOnly, xCorrelationId, xAvalaraClient);
@@ -289,7 +289,7 @@ Name | Type | Description | Notes
289289
290290
Retrieve a company
291291

292-
Retrieve an existing company
292+
Retrieve a company.
293293

294294
### Example
295295

@@ -320,8 +320,8 @@ public class Example {
320320

321321
CompaniesW9Api apiInstance = new CompaniesW9Api(apiClient);
322322
String id = "id_example"; // String | Id of the company
323-
String avalaraVersion = "2.0"; // String | API version
324-
String xCorrelationId = "dccf03ba-f1c1-4540-a0ab-3a642cb46223"; // String | Unique correlation Id in a GUID format
323+
String avalaraVersion = "2.0.0"; // String | API version
324+
String xCorrelationId = "1c9d767c-523c-42c5-bbcb-5158761b48a0"; // String | Unique correlation Id in a GUID format
325325
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) .
326326
try {
327327
CompanyResponse result = apiInstance.getCompany(id, avalaraVersion, xCorrelationId, xAvalaraClient);
@@ -377,7 +377,7 @@ Name | Type | Description | Notes
377377
378378
Update a company
379379

380-
Update a company
380+
Update a company.
381381

382382
### Example
383383

@@ -408,8 +408,8 @@ public class Example {
408408

409409
CompaniesW9Api apiInstance = new CompaniesW9Api(apiClient);
410410
String id = "id_example"; // String | The ID of the company to update
411-
String avalaraVersion = "2.0"; // String | API version
412-
String xCorrelationId = "e5197be7-4ab7-4f90-a190-c0a491ebb8e1"; // String | Unique correlation Id in a GUID format
411+
String avalaraVersion = "2.0.0"; // String | API version
412+
String xCorrelationId = "03774e95-4208-4f91-a5c8-e218fcb3c0a4"; // String | Unique correlation Id in a GUID format
413413
String xAvalaraClient = "Swagger UI; 22.1.0"; // String | Identifies the software you are using to call this API. For more information on the client header, see [Client Headers](https://developer.avalara.com/avatax/client-headers/) .
414414
CompanyCreateUpdateRequestModel companyCreateUpdateRequestModel = new CompanyCreateUpdateRequestModel(); // CompanyCreateUpdateRequestModel | The updated company data
415415
try {
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
3+
# CoveredIndividualReferenceResponse
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**id** | **String** | Covered individual ID | [optional] |
11+
|**firstName** | **String** | Covered individual&#39;s first name | [optional] |
12+
|**middleName** | **String** | Covered individual&#39;s middle name | [optional] |
13+
|**lastName** | **String** | Covered individual&#39;s last name | [optional] |
14+
|**nameSuffix** | **String** | Covered individual&#39;s name suffix | [optional] |
15+
|**tin** | **String** | Covered individual&#39;s TIN (SSN or ITIN) | [optional] |
16+
|**birthDate** | **OffsetDateTime** | Covered individual&#39;s date of birth | [optional] |
17+
|**coveredMonth0** | **Boolean** | Coverage indicator for all 12 months | [optional] |
18+
|**coveredMonth1** | **Boolean** | Coverage indicator for January | [optional] |
19+
|**coveredMonth2** | **Boolean** | Coverage indicator for February | [optional] |
20+
|**coveredMonth3** | **Boolean** | Coverage indicator for March | [optional] |
21+
|**coveredMonth4** | **Boolean** | Coverage indicator for April | [optional] |
22+
|**coveredMonth5** | **Boolean** | Coverage indicator for May | [optional] |
23+
|**coveredMonth6** | **Boolean** | Coverage indicator for June | [optional] |
24+
|**coveredMonth7** | **Boolean** | Coverage indicator for July | [optional] |
25+
|**coveredMonth8** | **Boolean** | Coverage indicator for August | [optional] |
26+
|**coveredMonth9** | **Boolean** | Coverage indicator for September | [optional] |
27+
|**coveredMonth10** | **Boolean** | Coverage indicator for October | [optional] |
28+
|**coveredMonth11** | **Boolean** | Coverage indicator for November | [optional] |
29+
|**coveredMonth12** | **Boolean** | Coverage indicator for December | [optional] |
30+
31+
32+

docs/A1099/V2/CoveredIndividualRequest.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**firstName** | **String** | | [optional] |
11-
|**middleName** | **String** | | [optional] |
12-
|**lastName** | **String** | | [optional] |
13-
|**nameSuffix** | **String** | | [optional] |
14-
|**tin** | **String** | | [optional] |
15-
|**birthDate** | **OffsetDateTime** | | [optional] |
16-
|**coveredMonthIndicator0** | **Boolean** | | [optional] |
17-
|**coveredMonthIndicator1** | **Boolean** | | [optional] |
18-
|**coveredMonthIndicator2** | **Boolean** | | [optional] |
19-
|**coveredMonthIndicator3** | **Boolean** | | [optional] |
20-
|**coveredMonthIndicator4** | **Boolean** | | [optional] |
21-
|**coveredMonthIndicator5** | **Boolean** | | [optional] |
22-
|**coveredMonthIndicator6** | **Boolean** | | [optional] |
23-
|**coveredMonthIndicator7** | **Boolean** | | [optional] |
24-
|**coveredMonthIndicator8** | **Boolean** | | [optional] |
25-
|**coveredMonthIndicator9** | **Boolean** | | [optional] |
26-
|**coveredMonthIndicator10** | **Boolean** | | [optional] |
27-
|**coveredMonthIndicator11** | **Boolean** | | [optional] |
28-
|**coveredMonthIndicator12** | **Boolean** | | [optional] |
10+
|**firstName** | **String** | Covered individual&#39;s first name | [optional] |
11+
|**middleName** | **String** | Covered individual&#39;s middle name | [optional] |
12+
|**lastName** | **String** | Covered individual&#39;s last name | [optional] |
13+
|**nameSuffix** | **String** | Covered individual&#39;s name suffix | [optional] |
14+
|**tin** | **String** | Covered individual&#39;s TIN (SSN or ITIN) | [optional] |
15+
|**birthDate** | **OffsetDateTime** | Covered individual&#39;s date of birth | [optional] |
16+
|**coveredMonthIndicator0** | **Boolean** | Coverage indicator for all 12 months | [optional] |
17+
|**coveredMonthIndicator1** | **Boolean** | Coverage indicator for January | [optional] |
18+
|**coveredMonthIndicator2** | **Boolean** | Coverage indicator for February | [optional] |
19+
|**coveredMonthIndicator3** | **Boolean** | Coverage indicator for March | [optional] |
20+
|**coveredMonthIndicator4** | **Boolean** | Coverage indicator for April | [optional] |
21+
|**coveredMonthIndicator5** | **Boolean** | Coverage indicator for May | [optional] |
22+
|**coveredMonthIndicator6** | **Boolean** | Coverage indicator for June | [optional] |
23+
|**coveredMonthIndicator7** | **Boolean** | Coverage indicator for July | [optional] |
24+
|**coveredMonthIndicator8** | **Boolean** | Coverage indicator for August | [optional] |
25+
|**coveredMonthIndicator9** | **Boolean** | Coverage indicator for September | [optional] |
26+
|**coveredMonthIndicator10** | **Boolean** | Coverage indicator for October | [optional] |
27+
|**coveredMonthIndicator11** | **Boolean** | Coverage indicator for November | [optional] |
28+
|**coveredMonthIndicator12** | **Boolean** | Coverage indicator for December | [optional] |
2929

3030

3131

0 commit comments

Comments
 (0)